From 41266c5b31dcf462949b172116f267d2187a6cfd Mon Sep 17 00:00:00 2001 From: Ross Barnowski Date: Tue, 18 Aug 2020 13:57:26 -0700 Subject: [PATCH] MAINT: pytest ignore doc directory. Update pytest config to ignore entire doc/ directory. This prevents an import name collision in doc/scipy-sphinx-theme/conf.py. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 420fc78a..1e9d2d6b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [tool:pytest] addopts = --showlocals --doctest-modules -ra --cov-report= --cov=numpydoc - --junit-xml=junit-results.xml --ignore=doc/conf.py + --junit-xml=junit-results.xml --ignore=doc/ junit_family = xunit2 filterwarnings = ignore:'U' mode is deprecated:DeprecationWarning