From a1abbd6a001f17bc93595f32109aafb212166655 Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Tue, 9 Nov 2021 23:41:03 +0100 Subject: [PATCH] Fix reference URL for Gitlab CI validation --- unittests/test_ci.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/unittests/test_ci.py b/unittests/test_ci.py index 29810c4138..4a4fe8cf6b 100644 --- a/unittests/test_ci.py +++ b/unittests/test_ci.py @@ -31,7 +31,9 @@ def test_ci_gitlab_pipeline(): # Fetch the latest Gitlab CI JSON schema try: - response = requests.get('https://json.schemastore.org/gitlab-ci') + response = requests.get( + 'https://gitlab.com/gitlab-org/gitlab/-/raw/master/app/assets/javascripts/editor/schema/ci.json' # noqa: E501 + ) except requests.exceptions.ConnectionError as e: pytest.skip(f'could not reach URL: {e}') else: