Skip to content

Commit ed8d638

Browse files
committed
chore: disable google/cloud/bigtable:internal_query_plan_test
1 parent 2a00c76 commit ed8d638

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/kokoro/windows/builds/bazel.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ $test_flags = $build_flags
4040
$test_flags += @("--test_output=errors", "--verbose_failures=true")
4141

4242
Write-Host "`n$(Get-Date -Format o) Compiling and running unit tests"
43-
bazelisk $common_flags test $test_flags --test_tag_filters=-integration-test ...
43+
# See #15678
44+
$test_targets = @("...", "-//google/cloud/bigtable:internal_query_plan_test")
45+
bazelisk $common_flags test $test_flags --test_tag_filters=-integration-test -- $test_targets
4446
if ($LastExitCode) {
4547
Write-Host -ForegroundColor Red "bazel test failed with exit code ${LastExitCode}."
4648
Exit ${LastExitCode}

0 commit comments

Comments
 (0)