Skip to content

Commit

Permalink
circleci: Enable store_test_results.
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-shawley committed Jul 6, 2019
1 parent b5f9c77 commit 32340c6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .circleci/config.yml
Expand Up @@ -89,10 +89,15 @@ jobs:
name: Run tests
command: |
export PATH=$PATH:$HOME/.local/bin
test -d build || mkdir build
nosetests --with-coverage --with-xunit --xunit-file=build/nosetests.xml
mkdir -p build/circleci/nosetests
nosetests --with-coverage \
--with-xunit --xunit-file=build/nosetests.xml
coverage report
coverage xml -o build/coverage.xml
# required for store_test_results
cp build/nosetests.xml build/circleci/nosetests/results.xml
- store_test_results:
path: build/circleci
- run:
name: Upload coverage to coveralls
command: |
Expand Down

0 comments on commit 32340c6

Please sign in to comment.