File tree Expand file tree Collapse file tree
tests/usethis/_integrations Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def test_matches_schema_store(self):
2727 online_schema_json = requests .get (
2828 "https://api.bitbucket.org/schemas/pipelines-configuration"
2929 ).text
30- except ConnectionError as err :
30+ except requests . exceptions . ConnectionError as err :
3131 if os .getenv ("CI" ):
3232 pytest .skip (
3333 "Failed to fetch JSON schema (connection issues); skipping test"
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def test_matches_schema_store(self):
2929 online_schema_json = requests .get (
3030 "https://json.schemastore.org/pre-commit-config.json"
3131 ).text
32- except ConnectionError as err :
32+ except requests . exceptions . ConnectionError as err :
3333 if os .getenv ("CI" ):
3434 pytest .skip (
3535 "Failed to fetch JSON schema (connection issues); skipping test"
You can’t perform that action at this time.
0 commit comments