1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Ole Streicher <olebole@debian.org>
Date: Sat, 29 Oct 2022 09:34:26 +0200
Subject: Disable fetching of latest patch in test
---
integration_tests/compatibility/test_file_compatibility.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/integration_tests/compatibility/test_file_compatibility.py b/integration_tests/compatibility/test_file_compatibility.py
index dbdcffc..f65f357 100644
--- a/integration_tests/compatibility/test_file_compatibility.py
+++ b/integration_tests/compatibility/test_file_compatibility.py
@@ -86,8 +86,7 @@ def fetch_latest_patch_versions(package_name):
# Enable internet here, otherwise pytest_remotedata will complain
# (and @pytest.mark.remote_data doesn't work on non-test methods).
-with internet_temporarily_enabled():
- PATCH_VERSIONS = sorted(fetch_latest_patch_versions("asdf"))
+PATCH_VERSIONS = []
def env_run(env_path, command, *args, **kwargs):
|