Skip to content

Commit

Permalink
fix(IDX): do not run colocated systests on k8s
Browse files Browse the repository at this point in the history
  • Loading branch information
basvandijk committed Aug 7, 2024
1 parent bb97eac commit 8ed1df8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/system-tests-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
3 changes: 2 additions & 1 deletion rs/tests/system_tests.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8ed1df8

Please sign in to comment.