summaryrefslogtreecommitdiff
path: root/src/leap/email/smtp/test_all.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/email/smtp/test_all.py')
-rw-r--r--src/leap/email/smtp/test_all.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/leap/email/smtp/test_all.py b/src/leap/email/smtp/test_all.py
new file mode 100644
index 00000000..a760ba53
--- /dev/null
+++ b/src/leap/email/smtp/test_all.py
@@ -0,0 +1,10 @@
+import sys
+import unittest
+
+import tests
+
+def test_suite():
+ return tests.test_suite()
+
+if __name__ == '__main__':
+ unittest.main(defaultTest='test_suite')