Skip to content

Commit

Permalink
[ckan#4430] fix collect test results
Browse files Browse the repository at this point in the history
  • Loading branch information
wardi committed Aug 31, 2018
1 parent 49a5fda commit 04457bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ jobs:
- run: |
mkdir -p ~/junit
case $CIRCLE_NODE_INDEX in
0) nosetests --ckan --reset-db --with-pylons=test-core-circle-ci.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext --with-xunit --xunit-file=~/junit/junit.xml ckan ckanext --segments 01234
0) nosetests --ckan --reset-db --with-pylons=test-core-circle-ci.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext --with-xunit --xunit-file=$HOME/junit/junit.xml ckan ckanext --segments 01234
;;
1) nosetests --ckan --reset-db --with-pylons=test-core-circle-ci.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext --with-xunit --xunit-file=~/junit/junit.xml ckan ckanext --segments 567
1) nosetests --ckan --reset-db --with-pylons=test-core-circle-ci.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext --with-xunit --xunit-file=$HOME/junit/junit.xml ckan ckanext --segments 567
;;
2) nosetests --ckan --reset-db --with-pylons=test-core-circle-ci.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext --with-xunit --xunit-file=~/junit/junit.xml ckan ckanext --segments 89ab
2) nosetests --ckan --reset-db --with-pylons=test-core-circle-ci.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext --with-xunit --xunit-file=$HOME/junit/junit.xml ckan ckanext --segments 89ab
;;
3) nosetests --ckan --reset-db --with-pylons=test-core-circle-ci.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext --with-xunit --xunit-file=~/junit/junit.xml ckan ckanext --segments cdef
3) nosetests --ckan --reset-db --with-pylons=test-core-circle-ci.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext --with-xunit --xunit-file=$HOME/junit/junit.xml ckan ckanext --segments cdef
;;
esac
- store_test_results:
Expand Down

0 comments on commit 04457bb

Please sign in to comment.