summaryrefslogtreecommitdiff
path: root/tests/__main__.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2017-02-12 10:54:00 +0100
committerIlya Etingof <etingof@gmail.com>2017-02-12 10:54:00 +0100
commit22e53a32753acfdc4101f6cb3f4d45397d72ce5c (patch)
tree574d16c8c1d71091db51798f1ec8c75a6494749e /tests/__main__.py
parent1bbefa9040dcd38195bb94bfeb85349b441659bd (diff)
downloadpyasn1-git-22e53a32753acfdc4101f6cb3f4d45397d72ce5c.tar.gz
test dir renamed into tests
Diffstat (limited to 'tests/__main__.py')
-rw-r--r--tests/__main__.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/__main__.py b/tests/__main__.py
new file mode 100644
index 0000000..70bd9ea
--- /dev/null
+++ b/tests/__main__.py
@@ -0,0 +1,21 @@
+#
+# This file is part of pyasn1 software.
+#
+# Copyright (c) 2005-2017, Ilya Etingof <etingof@gmail.com>
+# License: http://pyasn1.sf.net/license.html
+#
+try:
+ import unittest2 as unittest
+
+except ImportError:
+ import unittest
+
+suite = unittest.TestLoader().loadTestsFromNames(
+ ['tests.test_debug.suite',
+ 'tests.type.__main__.suite',
+ 'tests.codec.__main__.suite']
+)
+
+
+if __name__ == '__main__':
+ unittest.TextTestRunner(verbosity=2).run(suite)