From 644c03a8d5214c4cc77dd5a6fc8d59700e4b5f3f Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 17 Sep 2017 15:11:28 +0200 Subject: [PATCH] .travis.yml: run coverage only second time, do not clean, coveralls only when tests are run --- .travis.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ee5b1cd3..e0e88f46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -103,15 +103,18 @@ script: - make create_test_sounds - | if [[ -z "$AUBIO_NOTESTS" ]]; then - export NOSE2="coverage run --source=aubio `which nose2`" make test_lib_python_clean - make test_python_only_clean + export NOSE2="coverage run --source=aubio `which nose2`" + make test_python_only else make test_lib_only_clean fi; after_success: - - coveralls + - | + if [[ -z "$AUBIO_NOTESTS" ]]; then + coveralls + fi notifications: irc: -- 2.11.0