File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ website/vendor
3636
3737# Test reports
3838junit-report.xml
39- testacc-output.txt
4039
4140# Keep windows files with windows line endings
4241* .winfile eol=crlf
Original file line number Diff line number Diff line change @@ -34,11 +34,11 @@ test: fmtcheck
3434 go test $(TEST ) -timeout=30s -parallel=4
3535
3636testacc : fmtcheck
37- CGO_ENABLED=1 TF_ACC=1 go test $(TEST ) -v $(TESTARGS ) -timeout 120m -race 2>&1 | tee testacc-output.txt
37+ CGO_ENABLED=1 TF_ACC=1 go test $(TEST ) -v $(TESTARGS ) -timeout 120m -race
3838
39- junit-report : testacc
39+ junit-report : fmtcheck
4040 @go install github.com/jstemmer/go-junit-report/v2@latest
41- @go-junit-report -in testacc-output.txt -out junit-report.xml
41+ CGO_ENABLED=1 TF_ACC=1 go test $( TEST ) -v $( TESTARGS ) -timeout 120m -race 2>&1 | go-junit-report -iocopy -out junit-report.xml
4242
4343vet :
4444 @echo " go vet ."
You can’t perform that action at this time.
0 commit comments