commit | c948ad6df01adb3a4909441713e5a21508aa4c31 | [log] [tgz] |
---|---|---|
author | Yun Peng <pcloudy@google.com> | Tue Aug 06 18:35:27 2024 +0200 |
committer | GitHub <noreply@github.com> | Tue Aug 06 18:35:27 2024 +0200 |
tree | 443ad2f04ec833eac835482847c0011d9c23a4db | |
parent | 68193b317137f015f02a3de9babee32036dfc7c1 [diff] [blame] |
Fix get_test_tags (#2018) Missed in https://github.com/bazelbuild/continuous-integration/pull/2017
diff --git a/buildkite/bazelci.py b/buildkite/bazelci.py index 21ed7a5..b56436b 100755 --- a/buildkite/bazelci.py +++ b/buildkite/bazelci.py
@@ -2351,7 +2351,7 @@ continue tags = removeprefix(f, wanted_prefix).split(",") - include, exclude = partition_list(tags) + include, exclude, _ = partition_list(tags) # Skip tests tagged as "manual" by default, unless explicitly requested manual_tag = "manual"