diff options
author | Min RK <benjaminrk@gmail.com> | 2016-07-27 11:45:36 +0200 |
---|---|---|
committer | Min RK <benjaminrk@gmail.com> | 2016-07-28 16:41:16 +0200 |
commit | 10e1523a77919e0fd65098946aa1f6dcbceca087 (patch) | |
tree | 71d08cfac3b9b3fae029c348409113b91397905c | |
parent | 93c69277ef3519239857263d8c996fce23335d38 (diff) | |
download | external_python_setuptools-10e1523a77919e0fd65098946aa1f6dcbceca087.tar.gz external_python_setuptools-10e1523a77919e0fd65098946aa1f6dcbceca087.tar.bz2 external_python_setuptools-10e1523a77919e0fd65098946aa1f6dcbceca087.zip |
ignore .tox in pytest
avoids errors in setup.py test if tox has been run
-rwxr-xr-x | pytest.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ [pytest] addopts=--doctest-modules --ignore release.py --ignore setuptools/lib2to3_ex.py --ignore tests/manual_test.py --ignore tests/shlib_test --doctest-glob=pkg_resources/api_tests.txt --ignore scripts/upload-old-releases-as-zip.py --ignore pavement.py -norecursedirs=dist build *.egg setuptools/extern pkg_resources/extern +norecursedirs=dist build *.egg setuptools/extern pkg_resources/extern .tox flake8-ignore = setuptools/site-patch.py F821 setuptools/py*compat.py F811 |