From adc73f4daa2bf49fbeef4f7eb8d188f0c70da8c0 Mon Sep 17 00:00:00 2001 From: Florian Sesser Date: Mon, 19 May 2025 17:02:53 +0000 Subject: [PATCH] Tor: fail instead of skip if Tor executables aren't available. --- integration/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/conftest.py b/integration/conftest.py index fb3a29fa9..4e0fe06aa 100644 --- a/integration/conftest.py +++ b/integration/conftest.py @@ -316,7 +316,7 @@ def chutney(reactor, temp_dir: str) -> FilePath: missing = [exe for exe in ["tor", "tor-gencert"] if not which(exe)] if missing: - pytest.skip(f"Some command-line tools not found: {missing}") + pytest.fail(f"Some command-line tools not found: {missing}") # The directory with all of the network definitions. return FilePath(chutney.__file__).parent().child("data")