From 309e19e45c6b3f0a72031f2d20184c7a7eec7f75 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Wed, 10 Dec 2008 19:34:44 +0600 Subject: [PATCH] removed httpd_test and wsgi_test from the list of tests skipped by default --- greentest/runall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greentest/runall.py b/greentest/runall.py index b44a741..e223676 100755 --- a/greentest/runall.py +++ b/greentest/runall.py @@ -18,7 +18,7 @@ PARSE_PERIOD = 10 # the following aren't in the default list unless --all option present NOT_HUBS = set(['nginx']) NOT_REACTORS = set(['wxreactor', 'glib2reactor', 'gtk2reactor']) -NOT_TESTS = set(['test_threading_green.py', 'httpd_test.py', 'wsgi_test.py']) +NOT_TESTS = set(['test_threading_green.py']) def w(s): sys.stderr.write("%s\n" % (s, ))