From: Thomas Fillon Date: Sat, 18 Oct 2014 07:14:21 +0000 (+0200) Subject: Try to fix Travis CI - make test verbose X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=abfc69cbbdc34f9a9c4aeaed176c505994e2dc98;p=timeside-diadems.git Try to fix Travis CI - make test verbose --- diff --git a/setup.py b/setup.py index 566ead5..ea28ff2 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) - self.test_args = ['tests', '--ignore', 'tests/sandbox'] + self.test_args = ['tests', '--ignore', 'tests/sandbox', '--verbose'] self.test_suite = True def run_tests(self):