summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-10-15 13:35:29 -0400
committerSimo Sorce <simo@redhat.com>2015-10-19 12:17:03 -0400
commitb2d829bbcaf0a676b86238fced9cdc2b1ef9c074 (patch)
treebf39a1c587a4f6a8160ae72124e95334385756e2
parenta008bef50939383c33fa81d7e939908729b27876 (diff)
downloadcustodia-b2d829bbcaf0a676b86238fced9cdc2b1ef9c074.tar.gz
custodia-b2d829bbcaf0a676b86238fced9cdc2b1ef9c074.tar.xz
custodia-b2d829bbcaf0a676b86238fced9cdc2b1ef9c074.zip
Avoid running tests twice
Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Christian Heimes <cheimes@redhat.com>
-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)