aboutsummaryrefslogtreecommitdiffstats
path: root/pytest.ini
blob: 0d1824e47baf0a5529a1229c87975c30c192a176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[pytest]
addopts=--doctest-modules --flake8 --doctest-glob=pkg_resources/api_tests.txt -r sxX
norecursedirs=dist build *.egg setuptools/extern pkg_resources/extern pkg_resources/tests/data tools .* setuptools/_vendor pkg_resources/_vendor
doctest_optionflags=ELLIPSIS ALLOW_UNICODE
filterwarnings =
    # Fail on warnings
    error
    # https://github.com/pypa/setuptools/issues/1823
    ignore:bdist_wininst command is deprecated
    # Suppress this error; unimportant for CI tests
    ignore:Extraction path is writable by group/others:UserWarning
    # Suppress Python 2 deprecation warning
    ignore:Setuptools will stop working on Python 2:UserWarning
    # Suppress weird RuntimeWarning.
    ignore:Parent module 'setuptools' not found while handling absolute import:RuntimeWarning