From 158a1e057222a577ffcc29e6d45db0389f22370a Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Wed, 20 Jul 2016 18:15:27 -0400 Subject: setup: test: up verbosity if --debug is passed --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 89916b5f..65118ae4 100755 --- a/setup.py +++ b/setup.py @@ -462,7 +462,7 @@ class TestBaseCommand(distutils.core.Command): print "%s" % test print - t = unittest.TextTestRunner(verbosity=1) + t = unittest.TextTestRunner(verbosity=self.debug and 2 or 1) try: result = t.run(tests) -- cgit v1.2.1