From: Thomas Fillon Date: Wed, 16 Apr 2014 21:55:49 +0000 (+0200) Subject: Check tests samples in setup.py test X-Git-Tag: 0.5.5~1^2~38^2~41 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=02552beef2e30a6bea619dd9cbccb7a4f561df61;p=timeside.git Check tests samples in setup.py test --- diff --git a/setup.py b/setup.py index dc0ce4d..61e59a2 100755 --- a/setup.py +++ b/setup.py @@ -14,6 +14,10 @@ class PyTest(TestCommand): def run_tests(self): #import here, cause outside the eggs aren't loaded import pytest + + from tests.tools import check_samples + check_samples + errno = pytest.main(self.test_args) sys.exit(errno)