We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 396587d commit 9c69207Copy full SHA for 9c69207
scripts/test.sh
@@ -8,7 +8,7 @@ fi
8
# if gotestfmt is installed, run with it
9
if [ -x "$(command -v gotestfmt)" ]; then
10
set -o pipefail
11
- go test ./... ${GO_TEST_FLAGS} -json | gotestfmt ${GOTESTFMT_FLAGS}
+ go test ${SOURCE_FILES} ${GO_TEST_FLAGS} -json | gotestfmt ${GOTESTFMT_FLAGS}
12
else
13
- go test ./... ${GO_TEST_FLAGS}
+ go test ${SOURCE_FILES} ${GO_TEST_FLAGS}
14
fi
0 commit comments