summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 4eaae13..8a1091d 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -1,12 +1,14 @@
from custodia.secrets import SecretsTests
from custodia.store.sqlite import SqliteStoreTests
+from custodia.message.kem import KEMTests
import unittest
if __name__ == '__main__':
testLoad = unittest.TestLoader()
allUnitTests = [testLoad.loadTestsFromTestCase(SecretsTests),
- testLoad.loadTestsFromTestCase(SqliteStoreTests)]
+ testLoad.loadTestsFromTestCase(SqliteStoreTests),
+ testLoad.loadTestsFromTestCase(KEMTests)]
allTestsSuite = unittest.TestSuite(allUnitTests)