From 3ee8079f355329249bdd3ea1328c4cbbe8159e09 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Mon, 28 Aug 2017 17:26:49 +0300 Subject: [PATCH] python(test): add tests filter Usage example (bash): $ OPENCV_PYTEST_FILTER=test_digits python test.py -v --- modules/python/test/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/python/test/test.py b/modules/python/test/test.py index 7d9bba4fc2..aac5d74270 100755 --- a/modules/python/test/test.py +++ b/modules/python/test/test.py @@ -17,7 +17,7 @@ from tests_common import NewOpenCVTests basedir = os.path.abspath(os.path.dirname(__file__)) def load_tests(loader, tests, pattern): - tests.addTests(loader.discover(basedir, pattern='test_*.py')) + tests.addTests(loader.discover(basedir, pattern=os.environ.get('OPENCV_PYTEST_FILTER', 'test_') + '*.py')) return tests if __name__ == '__main__':