Skip to content

Commit

Permalink
configure strict pytest and filterwarnings=['error', ... (psf#3173)
Browse files Browse the repository at this point in the history
* configure strict pytest

* ignore current warnings
  • Loading branch information
graingert authored and cibinmathew committed Aug 13, 2022
1 parent 228e3bb commit 6797b0d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,18 @@ build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
# Option below requires `tests/optional.py`
addopts = "--strict-config --strict-markers"
optional-tests = [
"no_blackd: run when `d` extra NOT installed",
"no_jupyter: run when `jupyter` extra NOT installed",
]
markers = [
"incompatible_with_mypyc: run when testing mypyc compiled black"
]
xfail_strict = true
filterwarnings = [
"error",
'''ignore:Decorator `@unittest_run_loop` is no longer needed in aiohttp 3\.8\+:DeprecationWarning''',
'''ignore:Bare functions are deprecated, use async ones:DeprecationWarning''',
'''ignore:invalid escape sequence.*:DeprecationWarning''',
]

0 comments on commit 6797b0d

Please sign in to comment.