summaryrefslogtreecommitdiff
path: root/manage.sh
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2017-09-28 19:57:45 +0200
committerGitHub <noreply@github.com>2017-09-28 19:57:45 +0200
commit1dffbd33907103434bdc13ff035b8993559b5158 (patch)
tree9a474c649502370a25af23195fb48d469ba9d22d /manage.sh
parenteddc162f2c926d3741d3b2b122d0ccbf777c75ef (diff)
parentc12e0c39b93d28469038296ce6f1178bc9b5f2aa (diff)
Merge pull request #1037 from dalf/codecov
Switch to code-cov
Diffstat (limited to 'manage.sh')
-rwxr-xr-xmanage.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/manage.sh b/manage.sh
index 319a14f2a..e3929c917 100755
--- a/manage.sh
+++ b/manage.sh
@@ -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() {