Skip to content

Commit

Permalink
ci: Test with -race flag (hashicorp#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko authored and rstandt committed Jun 21, 2022
1 parent 93be601 commit 336a39e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -26,12 +26,12 @@ commands:
go_unit_test:
steps:
- run:
command: go test $(go list ./... | grep -v /tfexec/internal/e2etest)
command: go test -race $(go list ./... | grep -v /tfexec/internal/e2etest)
go_e2e_test:
steps:
- run:
no_output_timeout: 20m
command: go test -timeout=20m -v ./tfexec/internal/e2etest
no_output_timeout: 30m
command: go test -race -timeout=30m -v ./tfexec/internal/e2etest

jobs:
# combined due to slowness of Go install
Expand Down

0 comments on commit 336a39e

Please sign in to comment.