From ae42cd00bdfa8a34e75c563b62f0151a561cc82b Mon Sep 17 00:00:00 2001 From: Dmitrii Filippov Date: Tue, 21 Apr 2020 14:36:41 +0200 Subject: [PATCH] Fix tests for master branch Add tags to wct test_suite, so it is excluded from bazel test //... Change-Id: I73fdddc9c08eeaacff9401ea9531c95e6a782ced --- polygerrit-ui/app/rules.bzl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/polygerrit-ui/app/rules.bzl b/polygerrit-ui/app/rules.bzl index f63f36f6df..9303f2b282 100644 --- a/polygerrit-ui/app/rules.bzl +++ b/polygerrit-ui/app/rules.bzl @@ -146,4 +146,10 @@ def wct_suite(name, srcs, split_count): native.test_suite( name = name + "_test", tests = tests, + # Setup tags for suite as well. + # This excludes tests from the wildcard expansion (//...) + tags = [ + "local", + "manual", + ], )