From 4b8b8998db7aa5a6245ace7540c177ae629baf00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Dias=20Conde=20Azevedo?= Date: Mon, 30 May 2022 16:56:46 +0100 Subject: [PATCH] Update .travis.yml No test folder yet but assumed standard path --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5344087..a7477c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,5 +21,5 @@ before_install: install: - pip install -r requirements.txt - if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install coveralls; fi -script: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run --source=ripe setup.py test; else python setup.py test; fi +script: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run --source=ripe --omit="src/ripe/test/*" setup.py test; else python setup.py test; fi after_success: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi