aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-12-24 01:39:38 +0100
committerMaximilian Hils <git@maximilianhils.com>2014-12-24 01:39:38 +0100
commitf265cff3a93f13ce2b16493bd03b336757513a56 (patch)
tree129bee192c37332ca1665a80a39a6b489a016056
parent1c4f4c2494a97d0088e48405c1f8f4f48846f180 (diff)
downloadmitmproxy-f265cff3a93f13ce2b16493bd03b336757513a56.tar.gz
mitmproxy-f265cff3a93f13ce2b16493bd03b336757513a56.tar.bz2
mitmproxy-f265cff3a93f13ce2b16493bd03b336757513a56.zip
fix tests, experimental travis speedup
-rw-r--r--.travis.yml1
-rw-r--r--test/test_examples.py2
-rw-r--r--test/test_flow.py5
3 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 4319e5a3..ec6a30e9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,4 +1,5 @@
language: python
+sudo: false
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
diff --git a/test/test_examples.py b/test/test_examples.py
index deb97b49..6fd126b8 100644
--- a/test/test_examples.py
+++ b/test/test_examples.py
@@ -11,7 +11,7 @@ def test_load_scripts():
for f in scripts:
if "har_extractor" in f:
- f += " foo"
+ f += " -"
if "iframe_injector" in f:
f += " foo" # one argument required
if "modify_response_body" in f:
diff --git a/test/test_flow.py b/test/test_flow.py
index 764b9f24..6230ad73 100644
--- a/test/test_flow.py
+++ b/test/test_flow.py
@@ -274,7 +274,9 @@ class TestFlow:
f2 = f.copy()
a = f.get_state()
b = f2.get_state()
- assert f.get_state() == f2.get_state()
+ del a["id"]
+ del b["id"]
+ assert a == b
assert not f == f2
assert not f is f2
assert f.request.get_state() == f2.request.get_state()
@@ -333,6 +335,7 @@ class TestFlow:
assert f.get_state() == protocol.http.HTTPFlow.from_state(state).get_state()
f2 = f.copy()
+ f2.id = f.id # copy creates a different uuid
assert f.get_state() == f2.get_state()
assert not f == f2
f2.error = Error("e2")