diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-08-20 19:19:03 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-08-20 19:19:03 +0900 |
commit | c15cb95155d9a17bfb1a4f453fae917d2d8d2dee (patch) | |
tree | 0239baf28e959e57dd676c1684f142d82e2bdf1e /setup.cfg | |
parent | 30f696f27a4a5281af86d9e41ecc2e4c2ef32ebf (diff) | |
download | buildstream-c15cb95155d9a17bfb1a4f453fae917d2d8d2dee.tar.gz |
setup.cfg: Add tests/integration/project to norecursedirs
This is causing pytest to try to import the recently added app1.py
from the pip related tests. This fails because it's not meant to be
imported outside of the sandbox environment.
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ test=pytest [tool:pytest] addopts = --verbose --basetemp ./tmp --pep8 --pylint --pylint-rcfile=.pylintrc --cov=buildstream --cov-config .coveragerc -norecursedirs = integration-cache tmp __pycache__ .eggs +norecursedirs = tests/integration/project integration-cache tmp __pycache__ .eggs python_files = tests/*/*.py pep8maxlinelength = 119 pep8ignore = |