We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e047fd commit f45a2d3Copy full SHA for f45a2d3
scripts/tests/run-regression.sh
@@ -8,12 +8,14 @@ echo "${SCRIPT_NAME} is running... "
8
9
export AOC_REGRESSION_ENABLED=true
10
11
+REGRESSION_TESTS_PKG=$(go list -m)/tests
12
+
13
GOTEST="go test -v -race"
14
if [ -f "$(go env GOPATH)/bin/gotestsum" ] || [ -f "/usr/local/bin/gotestsum" ]; then
15
GOTEST="gotestsum --format pkgname --"
16
fi
17
-${GOTEST} ./...
18
+${GOTEST} "${REGRESSION_TESTS_PKG}"
19
20
unset AOC_REGRESSION_ENABLED
21
0 commit comments