summaryrefslogtreecommitdiff
path: root/pytest.ini
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-12-12 13:58:00 -0500
committerJason R. Coombs <jaraco@jaraco.com>2020-12-12 15:36:50 -0500
commitd448f10805dcd564d597f0c63157bb7913d26193 (patch)
tree363be9ac426b407666eff13f2fe9a9bfd21e8e6e /pytest.ini
parentb6bbe236ed0689f50b5148f1172510b975687e62 (diff)
parentc681f6748acaea1bf0b706528c36327cc94a6eed (diff)
downloadpython-setuptools-git-d448f10805dcd564d597f0c63157bb7913d26193.tar.gz
Merge https://github.com/jaraco/skeleton into feature/skeleton
Diffstat (limited to 'pytest.ini')
-rw-r--r--pytest.ini13
1 files changed, 10 insertions, 3 deletions
diff --git a/pytest.ini b/pytest.ini
index 162ad873..03fc773c 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -1,8 +1,15 @@
[pytest]
-addopts=--doctest-modules --doctest-glob=pkg_resources/api_tests.txt -r sxX
norecursedirs=dist build .tox .eggs
-doctest_optionflags=ELLIPSIS ALLOW_UNICODE
-filterwarnings =
+addopts=
+ --doctest-modules
+ --doctest-glob=pkg_resources/api_tests.txt
+ -r sxX
+doctest_optionflags=ALLOW_UNICODE ELLIPSIS
+# workaround for warning pytest-dev/pytest#6178
+junit_family=xunit2
+filterwarnings=
+ # https://github.com/pytest-dev/pytest/issues/6928
+ ignore:direct construction of .*Item has been deprecated:DeprecationWarning
# Fail on warnings
error
# https://github.com/pypa/setuptools/issues/1823