Merge pull request #1653 from silvin-lubecki/fix-storing-test-results

Fix storing test results on circle ci.
This commit is contained in:
Vincent Demeester 2019-02-01 12:06:49 +01:00 committed by GitHub
commit 896ff57b30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ jobs:
- run:
name: "Unit Test with Coverage"
command: |
mkdir test-results
mkdir -p test-results/unit-tests
docker build -f dockerfiles/Dockerfile.dev --tag cli-builder:$CIRCLE_BUILD_NUM .
docker run \
-e GOTESTSUM_JUNITFILE=/tmp/junit.xml \
@ -65,7 +65,7 @@ jobs:
make test-coverage
docker cp \
test-$CIRCLE_BUILD_NUM:/tmp/junit.xml \
/work/test-results/unit-tests
./test-results/unit-tests/junit.xml
- run:
name: "Upload to Codecov"
command: |