summaryrefslogtreecommitdiffstats
path: root/tests/tests.py
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-09-29 11:20:38 -0400
committerSimo Sorce <simo@redhat.com>2015-10-19 12:16:52 -0400
commit5fceed2d9be1001fc486d801e0a0f923d8dd3159 (patch)
treefc51762aa859135a1ebdaa9e96c95b25a847991c /tests/tests.py
parent18178ce292ae2f88528c7e6256c9956ec9ebf896 (diff)
downloadcustodia-5fceed2d9be1001fc486d801e0a0f923d8dd3159.tar.gz
custodia-5fceed2d9be1001fc486d801e0a0f923d8dd3159.tar.xz
custodia-5fceed2d9be1001fc486d801e0a0f923d8dd3159.zip
Make tox pep8 happy
Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Christian Heimes <cheimes@redhat.com>
Diffstat (limited to 'tests/tests.py')
-rw-r--r--tests/tests.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 5a2837e..02a3268 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -1,9 +1,13 @@
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
-from custodia.message.kem import KEMTests
-from tests.custodia import CustodiaTests
-import unittest
+
if __name__ == '__main__':
testLoad = unittest.TestLoader()