summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/tests.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/tests.py b/tests/tests.py
deleted file mode 100644
index 02a3268..0000000
--- a/tests/tests.py
+++ /dev/null
@@ -1,23 +0,0 @@
-from __future__ import absolute_import
-
-import unittest
-
-from tests.custodia import CustodiaTests
-
-from custodia.message.kem import KEMTests
-from custodia.secrets import SecretsTests
-from custodia.store.sqlite import SqliteStoreTests
-
-
-if __name__ == '__main__':
- testLoad = unittest.TestLoader()
-
- allUnitTests = [testLoad.loadTestsFromTestCase(SecretsTests),
- testLoad.loadTestsFromTestCase(SqliteStoreTests),
- testLoad.loadTestsFromTestCase(KEMTests),
- testLoad.loadTestsFromTestCase(CustodiaTests)]
-
- allTestsSuite = unittest.TestSuite(allUnitTests)
-
- testRunner = unittest.TextTestRunner()
- testRunner.run(allTestsSuite)