summaryrefslogtreecommitdiff
path: root/pytest.ini
blob: 53e18e200b1bad651cd90101403917733266012f (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[pytest]
addopts =
  # FIXME: Enable this once the test suite has no race conditions
  # `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:
  # https://docs.pytest.org/en/stable/doctest.html
  --doctest-modules

  # Dump the test results in junit format:
  --junitxml=.test-results/pytest/results.xml

  # `pytest-cov`:
  # `pytest-cov`, "-p" preloads the module early:
  -p pytest_cov
  --no-cov-on-fail
  --cov=cherrypy
  --cov-branch
  --cov-report=term-missing:skip-covered
  --cov-report=html:.tox/tmp/test-results/pytest/cov/
  --cov-report=xml
  # --cov-report xml:.test-results/pytest/cov.xml  # alternatively move it here
  --cov-context=test
  --cov-config=.coveragerc

doctest_optionflags = ALLOW_UNICODE ELLIPSIS

filterwarnings =
  error

  # pytest>=6.2.0 under Python 3.8:
  # Ref: https://docs.pytest.org/en/stable/usage.html#unraisable
  # Ref: https://github.com/pytest-dev/pytest/issues/5299
  ignore:Exception ignored in. <socket.socket fd=-1, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6>:pytest.PytestUnraisableExceptionWarning:_pytest.unraisableexception
  ignore:Exception ignored in. <_io.FileIO .closed.>:pytest.PytestUnraisableExceptionWarning:_pytest.unraisableexception

  ignore:Use cheroot.test.webtest:DeprecationWarning
  ignore:This method will be removed in future versions.*:DeprecationWarning
  ignore:Unable to verify that the server is bound on:UserWarning
  ignore:Not importing directory .*.tox/py35/lib/python3.5/site-packages/(zc|repoze).* missing __init__:ImportWarning
  # ref: https://github.com/mhammond/pywin32/issues/1256#issuecomment-527972824 :
  ignore:the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses:DeprecationWarning
  ignore:the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses:PendingDeprecationWarning

  # TODO: Replace the use of `cgi`. It seems untrivial.
  ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning

  # TODO: Remove once `cheroot.webtest._open_url_once` is fixed to release
  # TODO: connection properly.
  ignore:unclosed <socket.socket fd=:ResourceWarning

junit_duration_report = call
junit_family = xunit2
junit_suite_name = cherrypy_test_suite

# A mapping of markers to their descriptions allowed in strict mode:
markers =

minversion = 5.3.5

# Optimize pytest's lookup by restricting potentially deep dir tree scan:
norecursedirs =
  build
  cherrypy.egg-info
  dist
  docs
  .cache
  .eggs
  .git
  .github
  .tox

testpaths = cherrypy/test/