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 d5675c3 commit 1b7463cCopy full SHA for 1b7463c
GNUmakefile
@@ -42,7 +42,8 @@ testacc: fmtcheck
42
43
junit-report: fmtcheck
44
@go install github.com/jstemmer/go-junit-report/v2@latest
45
- CGO_ENABLED=1 TF_ACC=1 go test $(TEST) -v $(TESTARGS) -tags=$(TEST_SUITE) -timeout 120m -race -parallel=1 2>&1 > output.txt
+ CGO_ENABLED=1 TF_ACC=1 go test $(TEST) -v $(TESTARGS) -tags=$(TEST_SUITE) -timeout 120m -race -parallel=1 2>&1 | tee output.txt
46
+ ! grep -q "\[build failed\]" output.txt
47
go-junit-report -in output.txt -out junit-report.xml
48
49
vet:
0 commit comments