Fix tests for master branch

Add tags to wct test_suite, so it is excluded from bazel test //...

Change-Id: I73fdddc9c08eeaacff9401ea9531c95e6a782ced
This commit is contained in:
Dmitrii Filippov
2020-04-21 14:36:41 +02:00
parent 01f123af57
commit ae42cd00bd

View File

@@ -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",
],
)