]> www.average.org Git - loctrkd.git/blobdiff - test/test_mypy.py
test: make unittests individually runnable
[loctrkd.git] / test / test_mypy.py
index d2020d4ff7b2eb6f5abcf6b611395ba1e69c8d4f..d93f5685a0b752065b47dcfc8442144f277487c3 100644 (file)
@@ -1,7 +1,7 @@
 from pkg_resources import get_distribution, DistributionNotFound
 from subprocess import call
 from shutil import which
-from unittest import skipUnless, TestCase
+from unittest import main, skipUnless, TestCase
 
 mypy_version = 0.0
 try:
@@ -23,3 +23,7 @@ class TypeCheck(TestCase):
             "test",
         ]
         self.assertEqual(call(cmd), 0, "mypy typecheck")
+
+
+if __name__ == "__main__":
+    main()