diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca6d4661f2..0df0e483ba 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -912,7 +912,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 @@ -923,7 +923,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 3bd1e6816e..54be59170d 100644 --- a/bin/tests/system/isctest/mark.py +++ b/bin/tests/system/isctest/mark.py @@ -19,7 +19,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" )