Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Commit

Permalink
Generate coverage so it can be reported
Browse files Browse the repository at this point in the history
  • Loading branch information
betatim committed Sep 1, 2016
1 parent 0d00375 commit 42818b3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Expand Up @@ -15,7 +15,10 @@ env:
install: source build_tools/travis/install.sh

script:
nosetests --with-timer --timer-top-n 20
- if [ ${COVERAGE} == "true" ];
then nosetests --with-coverage --with-timer --timer-top-n 20; else
nosetests --with-timer --timer-top-n 20;
fi

after_success:
- if [ ${COVERAGE} == "true" ]; then
Expand Down

0 comments on commit 42818b3

Please sign in to comment.