summaryrefslogtreecommitdiff
path: root/tests/stdlib
diff options
context:
space:
mode:
authorRyan Williams <rdw@lindenlab.com>2009-11-30 12:12:09 -0800
committerRyan Williams <rdw@lindenlab.com>2009-11-30 12:12:09 -0800
commit0dfa5ac826898c170315df7fe668f2ded752833d (patch)
tree54010cc6acba899a7eab0e1414d939d07842f2b6 /tests/stdlib
parente49fa06db612558af69b84d54fd4d357d4a746b7 (diff)
downloadeventlet-0dfa5ac826898c170315df7fe668f2ded752833d.tar.gz
Reordered test_select so it runs on 2.5
Diffstat (limited to 'tests/stdlib')
-rw-r--r--tests/stdlib/all.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stdlib/all.py b/tests/stdlib/all.py
index b1d7cfc..a6bf00d 100644
--- a/tests/stdlib/all.py
+++ b/tests/stdlib/all.py
@@ -30,9 +30,10 @@ try:
s.close()
have_network_access = True
except socket.error, e:
+ print "Skipping network tests"
have_network_access = False
-
+import_main(globals(), 'test_select')
import_main(globals(), 'test_SimpleHTTPServer')
import_main(globals(), 'test_asynchat')
import_main(globals(), 'test_asyncore')
@@ -40,7 +41,6 @@ import_main(globals(), 'test_ftplib')
import_main(globals(), 'test_httplib')
if have_network_access:
import_main(globals(), 'test_httpservers')
-import_main(globals(), 'test_select')
if have_network_access:
import_main(globals(), 'test_socket')
import_main(globals(), 'test_socket_ssl')