From: Thomas Fillon Date: Sat, 18 Oct 2014 07:14:21 +0000 (+0200) Subject: Try to fix Travis CI - make test verbose X-Git-Tag: 0.6~4^2~19 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=ddfbb6bf237b7998481823e28e909581bfc2408f;p=timeside.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):