diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-02-27 14:36:17 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-02-27 14:36:17 +0100 |
commit | ade5078ebde142a83692bd5e940f6463e6ee52c7 (patch) | |
tree | cb6e7077b89420fbadfd9fad9eddf02e593dc308 | |
parent | 0faae87accff9ffcc6b5a221de4a79d51d2dae1a (diff) | |
download | mitmproxy-ade5078ebde142a83692bd5e940f6463e6ee52c7.tar.gz mitmproxy-ade5078ebde142a83692bd5e940f6463e6ee52c7.tar.bz2 mitmproxy-ade5078ebde142a83692bd5e940f6463e6ee52c7.zip |
suppress pathoc test timeouts on windows
-rw-r--r-- | test/pathod/test_pathoc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/pathod/test_pathoc.py b/test/pathod/test_pathoc.py index 23edd1d1..280a9141 100644 --- a/test/pathod/test_pathoc.py +++ b/test/pathod/test_pathoc.py @@ -12,6 +12,7 @@ from netlib.http import http1, http2 from pathod import pathoc, test, version, pathod, language from netlib.tutils import raises import tutils +from test.mitmproxy.tutils import skip_windows def test_response(): @@ -209,6 +210,7 @@ class TestDaemon(_TestDaemon): c.request("ws:/") c.stop() + @skip_windows @pytest.mark.xfail def test_wait_finish(self): c = pathoc.Pathoc( |