diff options
| author | Ryan Williams <rdw@lindenlab.com> | 2009-11-30 12:12:09 -0800 |
|---|---|---|
| committer | Ryan Williams <rdw@lindenlab.com> | 2009-11-30 12:12:09 -0800 |
| commit | 0dfa5ac826898c170315df7fe668f2ded752833d (patch) | |
| tree | 54010cc6acba899a7eab0e1414d939d07842f2b6 /tests/stdlib | |
| parent | e49fa06db612558af69b84d54fd4d357d4a746b7 (diff) | |
| download | eventlet-0dfa5ac826898c170315df7fe668f2ded752833d.tar.gz | |
Reordered test_select so it runs on 2.5
Diffstat (limited to 'tests/stdlib')
| -rw-r--r-- | tests/stdlib/all.py | 4 |
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') |
