jcconf not available on Python 3.
This commit is contained in:
parent
ddc93d7369
commit
a435b66006
|
@ -94,6 +94,13 @@ class TestMagicEncode:
|
||||||
assert driver.output == b'\x1bt\x00? ist teuro.'
|
assert driver.output == b'\x1bt\x00? ist teuro.'
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
import jcconv
|
||||||
|
except ImportError:
|
||||||
|
jcconv = None
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skipif(not jcconv, reason="jcconv not installed")
|
||||||
class TestKatakana:
|
class TestKatakana:
|
||||||
@given(st.text())
|
@given(st.text())
|
||||||
@example("カタカナ")
|
@example("カタカナ")
|
||||||
|
|
Loading…
Reference in New Issue