summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-05-11 14:21:31 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-05-11 14:21:31 -0400
commitcbc0215c01fd1d26535fdad760ac73403df2b96c (patch)
tree36ac90f7d3020ba5f04f73756d34ed70934e636e
parent878db78184cb2b9e6aa37736e16fd3d2a3f7f12d (diff)
downloadcherrypy-git-cbc0215c01fd1d26535fdad760ac73403df2b96c.tar.gz
Need to ignore .eggs also; why didn't this fail on my machine?
-rw-r--r--pytest.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/pytest.ini b/pytest.ini
index 132b8f16..2d6ef670 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -1,4 +1,4 @@
[pytest]
-norecursedirs=dist build .tox
+norecursedirs=dist build .tox .eggs
addopts=-v -rxs --junitxml=.test-results/pytest/results.xml --cov=cherrypy --cov-report term-missing:skip-covered --cov-report xml --doctest-modules
doctest_optionflags=ALLOW_UNICODE ELLIPSIS