Test suite cleanup

This commit is contained in:
Kenneth Reitz
2011-10-15 12:32:42 -04:00
parent 12997080a8
commit 7a0f3638b5
+4 -2
View File
@@ -5,6 +5,7 @@ from __future__ import with_statement
import time
import cookielib
import os
import unittest
import envoy
@@ -18,8 +19,9 @@ import requests
from requests.sessions import Session
PORT = os.environ.get('HTTPBIN_PORT', '7045')
HTTPBIN_URL = 'http://0.0.0.0:7045/'
HTTPBIN_URL = 'http://0.0.0.0:%s/' % (PORT)
# HTTPBIN_URL = 'http://127.0.0.1:8000/'
@@ -45,7 +47,7 @@ class RequestsTestSuite(unittest.TestCase):
if not _httpbin:
self.httpbin = envoy.connect('gunicorn httpbin:app --bind=0.0.0.0:7045')
self.httpbin = envoy.connect('gunicorn httpbin:app --bind=0.0.0.0:%s' % (PORT))
_httpbin = True
time.sleep(1)