From 7f5643a096c227f3457482fba9194a9565572721 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Tue, 21 Jul 2020 14:56:55 -0400 Subject: [PATCH] Add note on Tor integration test failures on Windows --- integration/test_tor.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integration/test_tor.py b/integration/test_tor.py index cec88a483..28360207a 100644 --- a/integration/test_tor.py +++ b/integration/test_tor.py @@ -18,6 +18,10 @@ import util # see "conftest.py" for the fixtures (e.g. "tor_network") +# XXX: Integration tests that involve Tor do not run reliably on +# Windows. They are skipped for now, in order to reduce CI noise. +# +# https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3347 if sys.platform.startswith('win'): pytest.skip('Skipping Tor tests on Windows', allow_module_level=True)