diff --git a/integration_tests/conftest.py b/integration_tests/conftest.py index 3f4f5fb2..077e711d 100644 --- a/integration_tests/conftest.py +++ b/integration_tests/conftest.py @@ -7,5 +7,5 @@ @pytest.fixture(scope="module") def codetf_schema(): schema_path = "https://raw.githubusercontent.com/pixee/codemodder-specs/main/codetf.schema.json" - response = requests.get(schema_path) + response = requests.get(schema_path, timeout=60) yield json.loads(response.text)