From 464057a4db4cecaf948c07f3d7ab643556f76b05 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Sun, 7 Feb 2016 17:42:55 +0000 Subject: [PATCH] [tox.ini] set *Test pattern for pytest's python_classes The glob pattern determines which classes are considered for test collection by pytest. We already follow this pattern for the unittest.TestCase derived subclasses (which are collected regardless of this option). --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index a4d0dd64e..6f7512bca 100644 --- a/tox.ini +++ b/tox.ini @@ -14,6 +14,8 @@ testpaths = Lib/fontTools python_files = *_test.py +python_classes = + *Test addopts = # run py.test in verbose mode -v