From 8ed1df896f3c7163c79a6a366d800c8fc37b1f1b Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Wed, 7 Aug 2024 19:12:54 +0000 Subject: [PATCH] fix(IDX): do not run colocated systests on k8s --- .github/workflows/system-tests-k8s.yml | 2 +- rs/tests/system_tests.bzl | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/system-tests-k8s.yml b/.github/workflows/system-tests-k8s.yml index 0b5e8b2d212..18680655787 100644 --- a/.github/workflows/system-tests-k8s.yml +++ b/.github/workflows/system-tests-k8s.yml @@ -84,5 +84,5 @@ jobs: BAZEL_COMMAND: "test" BAZEL_TARGETS: "${{ env.TARGETS }}" BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" - BAZEL_EXTRA_ARGS: "--jobs=${{ env.JOBS }} --test_tag_filters=k8s,-manual --k8s" + BAZEL_EXTRA_ARGS: "--jobs=${{ env.JOBS }} --test_tag_filters=k8s,-manual,-colocated --k8s" HONEYCOMB_API_TOKEN: ${{ secrets.HONEYCOMB_API_TOKEN }} diff --git a/rs/tests/system_tests.bzl b/rs/tests/system_tests.bzl index 3e411cb20ad..cbc11aa4d88 100644 --- a/rs/tests/system_tests.bzl +++ b/rs/tests/system_tests.bzl @@ -263,7 +263,8 @@ def system_test( env_inherit = env_inherit, env = env, tags = tags + ["requires-network", "system_test"] + - ([] if "experimental_system_test_colocation" in tags else ["manual"]) + additional_colocate_tags, + (["colocated"] if "experimental_system_test_colocation" in tags else ["manual"]) + + additional_colocate_tags, target_compatible_with = ["@platforms//os:linux"], timeout = test_timeout, flaky = flaky,