From: Thomas Fillon Date: Tue, 22 Apr 2014 06:49:34 +0000 (+0200) Subject: Install Coveralls through setup.py test_requires X-Git-Tag: 0.5.5~1^2~38^2~21 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=96502552eac259e6f98324b300043a8aebb158b3;p=timeside.git Install Coveralls through setup.py test_requires --- diff --git a/.travis.yml b/.travis.yml index 0415ea6..22fa718 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,6 @@ before_install: install: # - "pip install -r requirements.txt --use-mirrors" - python setup.py install - - pip install coveralls # command to run tests before_script: diff --git a/setup.py b/setup.py index 11140d6..cde749b 100755 --- a/setup.py +++ b/setup.py @@ -61,6 +61,6 @@ setup( include_package_data = True, zip_safe = False, scripts=['scripts/timeside-waveforms', 'scripts/timeside-launch'], - tests_require=['pytest'], + tests_require=['pytest', 'coveralls'], cmdclass = {'test': PyTest}, )