diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2017-09-28 19:57:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-28 19:57:45 +0200 |
| commit | 1dffbd33907103434bdc13ff035b8993559b5158 (patch) | |
| tree | 9a474c649502370a25af23195fb48d469ba9d22d /manage.sh | |
| parent | eddc162f2c926d3741d3b2b122d0ccbf777c75ef (diff) | |
| parent | c12e0c39b93d28469038296ce6f1178bc9b5f2aa (diff) | |
Merge pull request #1037 from dalf/codecov
Switch to code-cov
Diffstat (limited to 'manage.sh')
| -rwxr-xr-x | manage.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -73,9 +73,9 @@ unit_tests() { py_test_coverage() { echo '[!] Running python test coverage' - PYTHONPATH=`pwd` python -m nose2 -C --coverage "$SEARX_DIR" -s "$BASE_DIR/tests/unit" - coverage report - coverage html + PYTHONPATH=`pwd` python -m nose2 -C --log-capture --with-coverage --coverage "$SEARX_DIR" -s "$BASE_DIR/tests/unit" \ + && coverage report \ + && coverage html } robot_tests() { |