From: Štěpán Balážik Date: Fri, 20 Jun 2025 12:09:17 +0000 (+0200) Subject: Rename CI_ENABLE_ALL_TESTS to CI_ENABLE_LONG_TESTS X-Git-Tag: v9.20.11~9^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02cf400dc90315ad5e4a0f436c9c38b2c523d28f;p=thirdparty%2Fbind9.git Rename CI_ENABLE_ALL_TESTS to CI_ENABLE_LONG_TESTS New name is more descriptive and allows us to created more optional test sets. (cherry picked from commit c7a8f6105578c43f6d1d1a60e54d5c84ad7470a8) --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a1b9b113af9..69907f30433 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -998,7 +998,7 @@ system:gcc:bookworm:amd64: <<: *debian_bookworm_amd64_image <<: *system_test_job variables: - CI_ENABLE_ALL_TESTS: 1 + CI_ENABLE_LONG_TESTS: 1 CLEAN_BUILD_ARTIFACTS_ON_SUCCESS: 0 TZ: Australia/Sydney needs: # using artifacts from unit test job is required for gcov @@ -1009,7 +1009,7 @@ unit:gcc:bookworm:amd64: <<: *debian_bookworm_amd64_image <<: *unit_test_job variables: - CI_ENABLE_ALL_TESTS: 1 + CI_ENABLE_LONG_TESTS: 1 CLEAN_BUILD_ARTIFACTS_ON_SUCCESS: 0 needs: - job: gcc:bookworm:amd64 diff --git a/bin/tests/system/isctest/mark.py b/bin/tests/system/isctest/mark.py index fd1a8a0f576..630409fb719 100644 --- a/bin/tests/system/isctest/mark.py +++ b/bin/tests/system/isctest/mark.py @@ -20,7 +20,7 @@ import pytest long_test = pytest.mark.skipif( - not os.environ.get("CI_ENABLE_ALL_TESTS"), reason="CI_ENABLE_ALL_TESTS not set" + not os.environ.get("CI_ENABLE_LONG_TESTS"), reason="CI_ENABLE_LONG_TESTS not set" )