summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_libmat2.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/test_libmat2.py b/tests/test_libmat2.py
index 4f562e6..de5f67c 100644
--- a/tests/test_libmat2.py
+++ b/tests/test_libmat2.py
@@ -14,11 +14,7 @@ from libmat2 import check_dependencies, video, archive, web, epub
14 14
15class TestCheckDependencies(unittest.TestCase): 15class TestCheckDependencies(unittest.TestCase):
16 def test_deps(self): 16 def test_deps(self):
17 try: 17 ret = check_dependencies()
18 ret = check_dependencies()
19 except RuntimeError:
20 return # this happens if not every dependency is installed
21
22 for key, value in ret.items(): 18 for key, value in ret.items():
23 self.assertTrue(value, "The value for %s is False" % key) 19 self.assertTrue(value, "The value for %s is False" % key)
24 20