summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2019-07-15 21:59:54 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2019-07-16 14:05:34 +0900
commitd337f089957f53926470e1723dfc1c4313a4f698 (patch)
treeb92c8f06bfefd2c52bea7428ad11d4fd9ee3b334
parent34d9f5953a3ad2021379b24d33175c90b90b5154 (diff)
downloadbuildstream-d337f089957f53926470e1723dfc1c4313a4f698.tar.gz
setup.cfg: Don't load the integration-tests project recursively
Since we may have python files in there which are not expected to be loadable directly in the test environment (they are project data), we should not have the tests automatically recurse into there and assume it can collect tests from there.
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 545a6c89c..7c2c139e3 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -12,7 +12,7 @@ test=pytest
[tool:pytest]
addopts = --verbose --basetemp ./tmp --pep8 --pylint --pylint-rcfile=.pylintrc --durations=20
-norecursedirs = integration-cache tmp __pycache__ .eggs
+norecursedirs = tests/integration/project integration-cache tmp __pycache__ .eggs
python_files = tests/*/*.py
pep8maxlinelength = 119
pep8ignore =