From 10bc308c03ea3604592eca98db36a91eb7f791a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Jourdois?= Date: Sat, 31 Oct 2015 16:44:39 +0100 Subject: [PATCH] Run tests in build directory --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 178db9b..29644b2 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) - self.test_args = [] + self.test_args = ['-x', 'build/lib/pygal'] self.test_suite = True def run_tests(self):