File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,13 @@ $test_flags = $build_flags
4040$test_flags += @ (" --test_output=errors" , " --verbose_failures=true" )
4141
4242Write-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 = @ (" ..." , `
45+ " -//google/cloud/bigtable:internal_query_plan_test" , `
46+ " -//google/cloud/storage/tests:storage_include_test-default" , `
47+ " -//google/cloud/storage/tests:storage_include_test-grpc-metadata" , `
48+ " -//google/cloud/pubsub/samples:all" )
49+ bazelisk $common_flags test $test_flags -- test_tag_filters=- integration- test -- $test_targets
4450if ($LastExitCode ) {
4551 Write-Host - ForegroundColor Red " bazel test failed with exit code ${LastExitCode} ."
4652 Exit ${LastExitCode}
You can’t perform that action at this time.
0 commit comments