We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a00c76 commit ed8d638Copy full SHA for ed8d638
ci/kokoro/windows/builds/bazel.ps1
@@ -40,7 +40,9 @@ $test_flags = $build_flags
40
$test_flags += @("--test_output=errors", "--verbose_failures=true")
41
42
Write-Host "`n$(Get-Date -Format o) Compiling and running unit tests"
43
-bazelisk $common_flags test $test_flags --test_tag_filters=-integration-test ...
+# 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
46
if ($LastExitCode) {
47
Write-Host -ForegroundColor Red "bazel test failed with exit code ${LastExitCode}."
48
Exit ${LastExitCode}
0 commit comments