1[pytest]
2norecursedirs=dist build .tox .eggs
3addopts=
4	--doctest-modules
5	--doctest-glob=pkg_resources/api_tests.txt
6	-r sxX
7doctest_optionflags=ALLOW_UNICODE ELLIPSIS
8# workaround for warning pytest-dev/pytest#6178
9junit_family=xunit2
10filterwarnings=
11    # Fail on warnings
12    error
13    # https://github.com/pypa/setuptools/issues/1823
14    ignore:bdist_wininst command is deprecated
15    # Suppress this error; unimportant for CI tests
16    ignore:Extraction path is writable by group/others:UserWarning
17    # Suppress weird RuntimeWarning.
18    ignore:Parent module 'setuptools' not found while handling absolute import:RuntimeWarning
19    # Suppress use of bytes for filenames on Windows until fixed #2016
20    ignore:The Windows bytes API has been deprecated:DeprecationWarning
21    # https://github.com/pypa/setuptools/issues/2081
22    ignore:lib2to3 package is deprecated:PendingDeprecationWarning
23    ignore:lib2to3 package is deprecated:DeprecationWarning
24