Skip to content

Commit cf28897

Browse files
committed
rename SKIP_MISSING env var to SKIP_TEST_MISSING_DEP
1 parent 89e40ac commit cf28897

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/g_appledict_bin_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
class TestGlossaryAppleDictBin(TestGlossaryBase):
1717
def setUp(self):
18-
if os.getenv("SKIP_MISSING"):
18+
if os.getenv("SKIP_TEST_MISSING_DEP"):
1919
try:
2020
import biplist # noqa: F401
2121
except ImportError:

tests/g_kobo_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class TestGlossaryKobo(TestGlossaryBase):
99
def setUp(self):
10-
if os.getenv("SKIP_MISSING"):
10+
if os.getenv("SKIP_TEST_MISSING_DEP"):
1111
try:
1212
import marisa_trie # noqa: F401
1313
except ImportError:

0 commit comments

Comments
 (0)