We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5d70992 + a1abbd6 commit c2f7e55Copy full SHA for c2f7e55
unittests/test_ci.py
@@ -31,7 +31,9 @@ def test_ci_gitlab_pipeline():
31
32
# Fetch the latest Gitlab CI JSON schema
33
try:
34
- response = requests.get('https://json.schemastore.org/gitlab-ci')
+ response = requests.get(
35
+ 'https://gitlab.com/gitlab-org/gitlab/-/raw/master/app/assets/javascripts/editor/schema/ci.json' # noqa: E501
36
+ )
37
except requests.exceptions.ConnectionError as e:
38
pytest.skip(f'could not reach URL: {e}')
39
else:
0 commit comments