summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2020-04-17 18:30:38 +0200
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2020-04-17 18:32:55 +0200
commit7df056634cb26471792872a5ed8468ad2470e601 (patch)
tree99d4b48da28751a895c675de6d7161c875d5502e
parentd3c8f86547d8c7f25c0bec9f616d1ae2fe00b247 (diff)
downloadcherrypy-git-7df056634cb26471792872a5ed8468ad2470e601.tar.gz
Sort options in pytest config
-rw-r--r--pytest.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/pytest.ini b/pytest.ini
index 482ac6b6..3d2ecd77 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -1,6 +1,6 @@
[pytest]
-norecursedirs = dist build .tox .eggs
addopts = --durations=10 -v -rxXs -l --junitxml=.test-results/pytest/results.xml --cov=cherrypy --cov-report term-missing:skip-covered --cov-report xml --doctest-modules
+doctest_optionflags = ALLOW_UNICODE ELLIPSIS
filterwarnings =
error
ignore:Use cheroot.test.webtest:DeprecationWarning
@@ -10,8 +10,8 @@ filterwarnings =
# 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
-doctest_optionflags = ALLOW_UNICODE ELLIPSIS
junit_duration_report = call
junit_family = xunit2
junit_suite_name = cherrypy_test_suite
+norecursedirs = dist build .tox .eggs
testpaths = cherrypy/test/