summaryrefslogtreecommitdiff
path: root/testall.py
diff options
context:
space:
mode:
Diffstat (limited to 'testall.py')
-rwxr-xr-xtestall.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/testall.py b/testall.py
index 32d293ed..462550b7 100755
--- a/testall.py
+++ b/testall.py
@@ -1,9 +1,6 @@
#!/usr/bin/env python3
import sys
-if len(sys.argv)>1 and sys.argv[1].lower() == 'gevent':
- from gevent import monkey
- monkey.patch_all()
import os
import logging
@@ -61,7 +58,7 @@ class TestCommand(distutils.core.Command):
if __name__ == '__main__':
result = run_tests()
- print("<tests %s ran='%s' errors='%s' fails='%s' success='%s' gevent_enabled=%s/>" % (
+ print("<tests %s ran='%s' errors='%s' fails='%s' success='%s'/>" % (
"xmlns='http//andyet.net/protocol/tests'",
result.testsRun, len(result.errors),
- len(result.failures), result.wasSuccessful(),'gevent' in sys.modules))
+ len(result.failures), result.wasSuccessful()))