This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch tlater/nocover-usedevelop in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 23806fd9a0ccd874c4275b6bf6f4d167bf6a0f85 Author: Tristan Maat <[email protected]> AuthorDate: Fri Oct 11 17:23:56 2019 +0100 setup.cfg: Restrict pytest's config search to the tests/ directory This fixes issue #1121 - pytest would search the entire path for conftest.py, which in an isolated run would include conftest.py twice. This may still be an issue for sourcetest-nocover, but that isn't currently supported, so this shouldn't regress. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 2264a31..42f869b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,7 +11,7 @@ parentdir_prefix = BuildStream- test=pytest [tool:pytest] -addopts = --verbose --basetemp ./tmp --durations=20 +addopts = --verbose --basetemp ./tmp --durations=20 tests/ norecursedirs = tests/integration/project integration-cache tmp __pycache__ .eggs python_files = tests/*/*.py env =
