Skip to content

Commit

Permalink
Update entrypoint.sh (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaynafinocchiaro authored Feb 22, 2024
1 parent 39bc034 commit 36f7969
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go-code-tester/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ go clean -testcache

cd ${TEST_FOLDER}
if [[ -z $RACE_DETECTOR ]] || [[ $RACE_DETECTOR == "true" ]]; then
go test -v -short -race -count=1 -cover ./... > ~/run.log
GOEXPERIMENT=nocoverageredesign go test -v -short -race -count=1 -cover ./... > ~/run.log
else
# Run without the race flag
go test -v -short -count=1 -cover ./... > ~/run.log
GOEXPERIMENT=nocoverageredesign go test -v -short -count=1 -cover ./... > ~/run.log
fi

TEST_RETURN_CODE=$?
Expand Down

0 comments on commit 36f7969

Please sign in to comment.