From: Thomas Fillon Date: Wed, 16 Apr 2014 21:55:49 +0000 (+0200) Subject: Check tests samples in setup.py test X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d4183bb520271d1c6ba2d656e4a684f1c22791ad;p=timeside-diadems.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)