-
Notifications
You must be signed in to change notification settings - Fork 361
/
setup.cfg
26 lines (26 loc) · 1.12 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[tool:pytest]
testpaths = tests
norecursedirs = __pycache__ ui
DJANGO_SETTINGS_MODULE=tests.settings
# Enable display of skipped/expected fail test reasons.
# Disable unused auto-loaded mozlog plugin.
addopts = -rsx -p no:mozlog
# Make most warnings fatal (including the hidden by default DeprecationWarning):
# https://docs.pytest.org/en/latest/warnings.html
# https://docs.python.org/3.10/library/warnings.html#warning-categories
filterwarnings =
error
ignore::ImportWarning
ignore::PendingDeprecationWarning
# Gunicorn uses deprecated calls to pkg_resources, this issue is tracked in
# https://github.com/benoitc/gunicorn/issues/2840 and will likely be fixed in
# version 21.0.0.
ignore:.*pkg_resources.*:DeprecationWarning
# WhiteNoise warns if either `.django-static/` or `.build/` do not exist at startup,
# however this is expected when running tests since Django collectstatic and yarn build
# (which create those directories) typically aren't run apart from during deployments.
ignore:No directory at.*:UserWarning
markers =
slow: mark a test as slow.
xfail_strict = true
asyncio_mode = auto