File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ make clean # Remove build artifacts
1515
1616Run a single integration test:
1717``` bash
18- cd test/ integration && go test -count=1 -v -run TestStartCommandSucceedsWithValidToken .
18+ make test- integration RUN= TestStartCommandSucceedsWithValidToken
1919```
2020
2121Note: Integration tests require ` LOCALSTACK_AUTH_TOKEN ` environment variable for valid token tests.
Original file line number Diff line number Diff line change 2121test-integration : $(BUILD_DIR ) /$(BINARY_NAME )
2222 @JUNIT=" " ; [ -n " $$ CREATE_JUNIT_REPORT" ] && JUNIT=" --junitfile ../../test-integration-results.xml" ; \
2323 if [ " $$ (uname)" = " Darwin" ]; then \
24- cd test/integration && LSTK_KEYRING=file go run gotest.tools/gotestsum@latest --format testname $$ JUNIT -- -count=1 ./...; \
24+ cd test/integration && LSTK_KEYRING=file go run gotest.tools/gotestsum@latest --format testname $$ JUNIT -- -count=1 $( if $( RUN ) ,-run $( RUN ) ) ./...; \
2525 else \
26- cd test/integration && go run gotest.tools/gotestsum@latest --format testname $$ JUNIT -- -count=1 ./...; \
26+ cd test/integration && go run gotest.tools/gotestsum@latest --format testname $$ JUNIT -- -count=1 $( if $( RUN ) ,-run $( RUN ) ) ./...; \
2727 fi
2828
2929mock-generate :
You can’t perform that action at this time.
0 commit comments