From 02552beef2e30a6bea619dd9cbccb7a4f561df61 Mon Sep 17 00:00:00 2001 From: Thomas Fillon Date: Wed, 16 Apr 2014 23:55:49 +0200 Subject: [PATCH] Check tests samples in setup.py test --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) 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) -- 2.39.5