mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Add test for ssl module being importable
This commit is contained in:
parent
7698a06ad5
commit
f73fc4670f
@ -107,6 +107,11 @@ def test_unrar():
|
||||
test_basic()
|
||||
print ('Unrar OK!')
|
||||
|
||||
def test_ssl():
|
||||
import ssl
|
||||
ssl
|
||||
print ('SSL OK!')
|
||||
|
||||
def test_icu():
|
||||
from calibre.utils.icu import _icu_not_ok
|
||||
if _icu_not_ok:
|
||||
@ -138,6 +143,7 @@ def test_magick():
|
||||
def test():
|
||||
test_plugins()
|
||||
test_lxml()
|
||||
test_ssl()
|
||||
test_sqlite()
|
||||
test_imaging()
|
||||
test_unrar()
|
||||
|
Loading…
x
Reference in New Issue
Block a user