summaryrefslogtreecommitdiff
path: root/tests/stdlib/all_modules.py
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2014-07-18 15:21:26 +0400
committerSergey Shepelev <temotor@gmail.com>2014-08-27 10:21:55 +0400
commit203e629212be5cf6e53d577734421d494b255754 (patch)
tree5b7039ad6c4aa17cd2b65b7163595d9c8c45e25e /tests/stdlib/all_modules.py
parente9486899e0d62325cc8ff4966291956ce01b87d0 (diff)
downloadeventlet-203e629212be5cf6e53d577734421d494b255754.tar.gz
PEP-8 fixes
Diffstat (limited to 'tests/stdlib/all_modules.py')
-rw-r--r--tests/stdlib/all_modules.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/stdlib/all_modules.py b/tests/stdlib/all_modules.py
index ce1c922..ec8a5f8 100644
--- a/tests/stdlib/all_modules.py
+++ b/tests/stdlib/all_modules.py
@@ -10,20 +10,20 @@ def get_modules():
'test_queue',
'test_socket_ssl',
'test_socketserver',
-# 'test_subprocess',
+ # 'test_subprocess',
'test_thread',
'test_threading',
'test_threading_local',
'test_urllib',
'test_urllib2_localnet']
-
+
network_modules = [
'test_httpservers',
'test_socket',
'test_ssl',
'test_timeout',
'test_urllib2']
-
+
# quick and dirty way of testing whether we can access
# remote hosts; any tests that try internet connections
# will fail if we cannot
@@ -36,6 +36,5 @@ def get_modules():
test_modules = test_modules + network_modules
except socket.error as e:
print("Skipping network tests")
-
+
return test_modules
-