Skip to content

Commit

Permalink
Allow passing custom args to run_tests.sh go test
Browse files Browse the repository at this point in the history
This allows e.g. `./run_tests.sh -count=1` to be used, which in this
example forces tests to run while ignoring the cached test results.
  • Loading branch information
jrick committed Nov 24, 2020
1 parent 049afd8 commit 5d45c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -ex

go version

go test -short -vet=all ./...
go test -short -vet=all "$@" ./...

0 comments on commit 5d45c2f

Please sign in to comment.