From 5dfc39cb206ef70863cf0a4a1d56ccd95a8cebd4 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Mon, 20 Nov 2023 17:44:56 -0500 Subject: [PATCH] Skip on 3.12 --- integration/test_tor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration/test_tor.py b/integration/test_tor.py index d7fed5790..d114b763a 100644 --- a/integration/test_tor.py +++ b/integration/test_tor.py @@ -30,6 +30,7 @@ from allmydata.util.deferredutil import async_to_deferred if sys.platform.startswith('win'): pytest.skip('Skipping Tor tests on Windows', allow_module_level=True) +@pytest.mark.skipif(sys.version_info[:2] > (3, 11), reason='Chutney still does not support 3.12') @pytest_twisted.inlineCallbacks def test_onion_service_storage(reactor, request, temp_dir, flog_gatherer, tor_network, tor_introducer_furl): """ @@ -140,6 +141,7 @@ def _create_anonymous_node(reactor, name, web_port, request, temp_dir, flog_gath print("okay, launched") return result +@pytest.mark.skipif(sys.version_info[:2] > (3, 11), reason='Chutney still does not support 3.12') @pytest.mark.skipif(sys.platform.startswith('darwin'), reason='This test has issues on macOS') @pytest_twisted.inlineCallbacks def test_anonymous_client(reactor, request, temp_dir, flog_gatherer, tor_network, introducer_furl):