summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Dawson <phil.dawson@codethink.co.uk>2019-04-17 14:02:28 +0100
committerPhil Dawson <phil.dawson@codethink.co.uk>2019-04-17 16:11:54 +0100
commit2ddaf2d986cafb37b23ece328b08a2841ec64eb0 (patch)
treef9e5f5e7da52271f52b7ea39a0de8c963f2540e7
parent316a0e493dc661f2f22d3f1277ee4319cfe652d9 (diff)
downloadbuildstream-phil/fixup-templated-test-collection.tar.gz
testing: Ensure templated tests hook aren't collected undesirablyphil/fixup-templated-test-collection
Ensure that when specifying either a subset of tests to run, the templated source tests are not automatically collected, regardless of whether or not they are desired. Fixes #995
-rw-r--r--buildstream/testing/__init__.py24
1 files changed, 23 insertions, 1 deletions
diff --git a/buildstream/testing/__init__.py b/buildstream/testing/__init__.py
index 0dfc11f1c..62025ded0 100644
--- a/buildstream/testing/__init__.py
+++ b/buildstream/testing/__init__.py
@@ -90,9 +90,31 @@ def sourcetests_collection_hook(session):
Args:
session (pytest.Session): The current pytest session
"""
+ def should_collect_tests(config):
+ args = config.args
+ rootdir = config.rootdir
+ # When no args are supplied, pytest defaults the arg list to
+ # just include the session's root_dir. We want to collect
+ # tests as part of the default collection
+ if args == [str(rootdir)]:
+ return True
+
+ # If specific tests are passed, don't collect
+ # everything. Pytest will handle this correctly without
+ # modification.
+ if len(args) > 1 or rootdir not in args:
+ return False
+
+ # If in doubt, collect them, this will be an easier bug to
+ # spot and is less likely to result in bug not being found.
+ return True
+
SOURCE_TESTS_PATH = os.path.dirname(_sourcetests.__file__)
# Add the location of the source tests to the session's
# python_files config. Without this, pytest may filter out these
# tests during collection.
session.config.addinivalue_line("python_files", os.path.join(SOURCE_TESTS_PATH, "*.py"))
- session.config.args.append(SOURCE_TESTS_PATH)
+ # If test invocation has specified specic tests, don't
+ # automatically collect templated tests.
+ if should_collect_tests(session.config):
+ session.config.args.append(SOURCE_TESTS_PATH)