From abfc69cbbdc34f9a9c4aeaed176c505994e2dc98 Mon Sep 17 00:00:00 2001 From: Thomas Fillon Date: Sat, 18 Oct 2014 09:14:21 +0200 Subject: [PATCH] Try to fix Travis CI - make test verbose --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.39.5