diff options
author | Alexandre Flament <alex@al-f.net> | 2017-09-13 22:58:52 +0200 |
---|---|---|
committer | Dalf <alex@al-f.net> | 2017-09-17 17:52:22 +0200 |
commit | fb587f11febc1951f42f5643b1532823675c2acf (patch) | |
tree | 80302ab901fbc5db1f5173afb1b61f9b400c1b03 /manage.sh | |
parent | 6ebfdf0bb3e666dbc033e47f7e730966bde55b03 (diff) | |
download | searxng-fb587f11febc1951f42f5643b1532823675c2acf.tar.gz searxng-fb587f11febc1951f42f5643b1532823675c2acf.zip |
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() { |