diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-06-04 20:36:50 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-06-04 20:36:50 +1200 |
commit | 07d5b90ebf190c4419f6b3f3d3cea1cf116ceecb (patch) | |
tree | 3a27d3c3e0b4985368fcd3a8153924c497162fbd /test/tutils.py | |
parent | 182b79ab9ec3f59e17536b135e90eaa91e577111 (diff) | |
download | mitmproxy-07d5b90ebf190c4419f6b3f3d3cea1cf116ceecb.tar.gz mitmproxy-07d5b90ebf190c4419f6b3f3d3cea1cf116ceecb.tar.bz2 mitmproxy-07d5b90ebf190c4419f6b3f3d3cea1cf116ceecb.zip |
Shore up test suite.
Diffstat (limited to 'test/tutils.py')
-rw-r--r-- | test/tutils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/tutils.py b/test/tutils.py index 778ad790..dc118bbe 100644 --- a/test/tutils.py +++ b/test/tutils.py @@ -16,6 +16,7 @@ class DaemonTests(object): timeout = None hexdump = False ssloptions = None + nocraft = False @classmethod def setUpAll(klass): @@ -36,6 +37,7 @@ class DaemonTests(object): nohang = klass.nohang, timeout = klass.timeout, hexdump = klass.hexdump, + nocraft = klass.nocraft, logreq = True, logresp = True, explain = True |