forked from cherrypy/cheroot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
62 lines (54 loc) · 2.06 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[pytest]
addopts =
# `pytest-xdist`:
--numprocesses=auto
# `pytest-mon`:
# useful for live testing with `pytest-watch` during development:
--testmon
# show 10 slowest invocations:
--durations=10
# a bit of verbosity doesn't hurt:
-v
# report all the things == -rxXs:
-ra
# show values of the local vars in errors:
--showlocals
# autocollect and invoke the doctests from all modules:
--doctest-modules
# dump the test results in junit format:
--junitxml=junit-test-results.xml
# `pytest-cov`:
--cov=cheroot
--cov-report term-missing:skip-covered
--cov-report xml
# --cov-report xml:.test-results/pytest/cov.xml # alternatively move it here
doctest_optionflags = ALLOW_UNICODE ELLIPSIS
filterwarnings =
error
# cryptography==3.0 warning:
# `cryptography.utils.CryptographyDeprecationWarning` happens but we
# cannot import it because of the chicken-egg nature of its
# declaration. So we're forced to use its superclass that is in
# fact, not a `DeprecationWarning` but a `UserWarning`.
# Ref: https://github.com/pyca/cryptography/issues/5335
ignore:Python 2 is no longer supported by the Python core team. Support for it is now deprecated in cryptography, and will be removed in a future release.:UserWarning:cryptography
ignore:Python 2 is no longer supported by the Python core team. Support for it is now deprecated in cryptography, and will be removed in a future release.:UserWarning:OpenSSL.crypto
# cryptography==3.1 warning:
ignore:Python 3.5 support will be dropped in the next release ofcryptography. Please upgrade your Python.:UserWarning:cryptography
ignore:Python 3.5 support will be dropped in the next release ofcryptography. Please upgrade your Python.:UserWarning:OpenSSL.crypto
junit_duration_report = call
junit_family = xunit2
junit_suite_name = cheroot_test_suite
minversion = 4.6.6
norecursedirs =
build
cheroot.egg-info
dist
docs
.cache
.eggs
.git
.github
.tox
testpaths = cheroot/test/
xfail_strict = true