Skip to content

Commit

Permalink
test(spanner): fix errors not reporting when emulator test passes (#4451
Browse files Browse the repository at this point in the history
)

Emulator tests were overwritting the results of the main test
run which can cause errors that occured in main test run not
to be reported when the emulator tests pass. Now emulator tests
append to the test log.

Updates: #4450
  • Loading branch information
codyoss committed Jul 16, 2021
1 parent 64fff7a commit 8f3275c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spanner/emulator_test.sh
Expand Up @@ -43,4 +43,4 @@ function cleanup() {
}
trap cleanup EXIT

go test -v -timeout 10m ./... -run '^TestIntegration_' 2>&1 | tee sponge_log.log
go test -v -timeout 10m ./... -run '^TestIntegration_' 2>&1 | tee -a sponge_log.log

0 comments on commit 8f3275c

Please sign in to comment.