Skip to content

Commit a1abbd6

Browse files
author
Vasileios Karakasis
committed
Fix reference URL for Gitlab CI validation
1 parent 5d70992 commit a1abbd6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

unittests/test_ci.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ def test_ci_gitlab_pipeline():
3131

3232
# Fetch the latest Gitlab CI JSON schema
3333
try:
34-
response = requests.get('https://json.schemastore.org/gitlab-ci')
34+
response = requests.get(
35+
'https://gitlab.com/gitlab-org/gitlab/-/raw/master/app/assets/javascripts/editor/schema/ci.json' # noqa: E501
36+
)
3537
except requests.exceptions.ConnectionError as e:
3638
pytest.skip(f'could not reach URL: {e}')
3739
else:

0 commit comments

Comments
 (0)