mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Add a build test for the lzma module
This commit is contained in:
parent
096895828a
commit
d37b124fb5
@ -49,6 +49,11 @@ def test_regex():
|
||||
raise ValueError('regex module failed on a simple search')
|
||||
print ('regex OK!')
|
||||
|
||||
def test_lzma():
|
||||
from lzma.xz import test_lzma2
|
||||
test_lzma2()
|
||||
print ('lzma OK!')
|
||||
|
||||
def test_html5lib():
|
||||
import html5lib.html5parser # noqa
|
||||
from html5lib import parse # noqa
|
||||
@ -232,6 +237,7 @@ def test():
|
||||
if iswindows:
|
||||
test_dlls()
|
||||
test_plugins()
|
||||
test_lzma()
|
||||
test_dukpy()
|
||||
test_spell()
|
||||
test_lxml()
|
||||
|
Loading…
x
Reference in New Issue
Block a user