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 63e69ba commit 8c9970dCopy full SHA for 8c9970d
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 2>&1 -parallel=1 | go-junit-report -iocopy -out junit-report.xml
+ CGO_ENABLED=1 TF_ACC=1 go test $(TEST) -v $(TESTARGS) -tags=$(TEST_SUITE) -timeout 120m -race -parallel=1 2>&1 > output.txt
46
+ go-junit-report -in output.txt -out junit-report.xml
47
48
vet:
49
@echo "go vet ."
0 commit comments