summaryrefslogtreecommitdiff
path: root/tests/wsgi_test.py
diff options
context:
space:
mode:
authorJakub Stasiak <jakub@stasiak.at>2016-01-06 23:55:44 +0100
committerJakub Stasiak <jakub@stasiak.at>2016-01-06 23:58:45 +0100
commit05cfa713413e454e9bf7dee60ee8ef3f1a35dc90 (patch)
treead22475835fa638449050ea56abe16b30ae68eb5 /tests/wsgi_test.py
parente0d923488c9325dea59fb4607d79a7077444476c (diff)
downloadeventlet-05cfa713413e454e9bf7dee60ee8ef3f1a35dc90.tar.gz
tests: Remove skipped tests
They serve no purpose being skipped, better get rid of them than be misled by their presence.
Diffstat (limited to 'tests/wsgi_test.py')
-rw-r--r--tests/wsgi_test.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/wsgi_test.py b/tests/wsgi_test.py
index ef443e6..8e2b50f 100644
--- a/tests/wsgi_test.py
+++ b/tests/wsgi_test.py
@@ -335,14 +335,6 @@ class TestHttpd(_TestBase):
self.assertRaises(ConnectionClosed, read_http, sock)
fd.close()
- @tests.skipped
- def test_005_run_apachebench(self):
- url = 'http://localhost:12346/'
- # ab is apachebench
- subprocess.call(
- [tests.find_command('ab'), '-c', '64', '-n', '1024', '-k', url],
- stdout=subprocess.PIPE)
-
def test_006_reject_long_urls(self):
sock = eventlet.connect(
('localhost', self.port))