Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ci/kokoro/windows/builds/bazel.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ Fetch-Bazel-Dependencies
# more test-only flags.
$test_flags = $build_flags
$test_flags += @("--test_output=errors", "--verbose_failures=true")

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