From b0c50b7a59fbc18cb01158fc901013a63ed87b90 Mon Sep 17 00:00:00 2001 From: Pedro Vicente Date: Mon, 12 Nov 2012 13:48:20 +0100 Subject: Added gevent as parameter to testall checking test suite with gevent enabled/disabled --- testall.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'testall.py') diff --git a/testall.py b/testall.py index c9ad5448..2cb6f538 100755 --- a/testall.py +++ b/testall.py @@ -1,7 +1,11 @@ #!/usr/bin/env python -import os import sys +if len(sys.argv)>1 and sys.argv[1].lower() == 'gevent': + from gevent import monkey + monkey.patch_all() + +import os import logging import unittest import distutils.core @@ -57,7 +61,7 @@ class TestCommand(distutils.core.Command): if __name__ == '__main__': result = run_tests() - print("" % ( + print("" % ( "xmlns='http//andyet.net/protocol/tests'", result.testsRun, len(result.errors), - len(result.failures), result.wasSuccessful())) + len(result.failures), result.wasSuccessful(),'gevent' in sys.modules)) -- cgit v1.2.3