Skip to content

Commit 8c9970d

Browse files
author
Alvar Viana
authored
tests: Fix test execution param order (#329)
* Fix test execution because the order or some options was invalid * Remove unwanted changes
1 parent 63e69ba commit 8c9970d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

GNUmakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ testacc: fmtcheck
4242

4343
junit-report: fmtcheck
4444
@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
45+
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
4647

4748
vet:
4849
@echo "go vet ."

0 commit comments

Comments
 (0)