-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
31 lines (24 loc) · 994 Bytes
/
pytest.ini
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
27
28
29
30
31
[pytest]
addopts = "--tb=short"
norecursedirs = .git build dist
python_files =
*_test.py
*_tests.py
test_*.py
python_classes =
*Test
*Tests
# "xpassed" should be treated as failure
xfail_strict=true
# warnings triggered during test discovery - these can not be filtered via conftest.py
filterwarnings =
#error
# puzzle plugins
ignore:pkg_resources is deprecated as an API.:DeprecationWarning
# "schwarzlog" still uses pkg_resources for its namespace package
ignore:Deprecated call to `pkg_resources.declare_namespace:DeprecationWarning
# will need to update our usage here
ignore:datetime.datetime.utcfromtimestamp\(\) is deprecated and scheduled for removal in a future version.:DeprecationWarning
# pycerberus (on test failures)
# locale_dir_in_egg = resource_filename(__name__, "/locales")
ignore:Use of .. or absolute path in a resource path is not allowed and will raise exceptions in a future release.:DeprecationWarning