From 9b2e9343a0776986b78d872b09b8a04caf873071 Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Sat, 12 Jan 2019 21:20:54 +1100 Subject: [PATCH] Fix circle. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 31d2bd3..1a59803 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ jobs: - run: name: Test command: | - go test -v ./... 2>&1 | tee report.txt && go-junit-report report.txt > ~/report/junit.xml + go test -v ./... 2>&1 | tee report.txt && go-junit-report < report.txt > ~/report/junit.xml - store_test_results: path: ~/report