From da26b25ac398e657edca4f5619282d1b03e78122 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Tue, 28 Mar 2017 12:55:30 -0700 Subject: [PATCH] accept failures from the tor test --- setup.py | 2 +- tests/test_warcprox.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e096aad..0b916aa 100755 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ except: setuptools.setup( name='warcprox', - version='2.1b1.dev62', + version='2.1b1.dev63', description='WARC writing MITM HTTP/S proxy', url='https://github.com/internetarchive/warcprox', author='Noah Levitt', diff --git a/tests/test_warcprox.py b/tests/test_warcprox.py index 1bdc282..4ef17c0 100755 --- a/tests/test_warcprox.py +++ b/tests/test_warcprox.py @@ -1126,6 +1126,7 @@ def test_domain_data_soft_limit( # XXX this test relies on a tor proxy running at localhost:9050 with a working # connection to the internet, and relies on a third party site (facebook) being # up and behaving a certain way +@pytest.mark.xfail def test_tor_onion(archiving_proxies): response = requests.get('http://www.facebookcorewwwi.onion/', proxies=archiving_proxies, verify=False, allow_redirects=False)