summaryrefslogtreecommitdiff
path: root/pytest.ini
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2022-02-01 19:28:45 +0100
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2022-02-01 19:28:45 +0100
commit303d5ee44f46ff2aba499679573b86b94e4a6809 (patch)
treee9d7d4c2c095728347c8c202f7bf615ce9d0626a /pytest.ini
parentb43ba31cf23fbde49eeca17a7562173200b4cc8b (diff)
downloadcherrypy-git-303d5ee44f46ff2aba499679573b86b94e4a6809.tar.gz
Titlecase the annotation comments in pytest config
Diffstat (limited to 'pytest.ini')
-rw-r--r--pytest.ini14
1 files changed, 7 insertions, 7 deletions
diff --git a/pytest.ini b/pytest.ini
index 9335b27b..4df7b5f5 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -5,25 +5,25 @@ addopts =
# --numprocesses=auto
# `pytest-mon`:
- # useful for live testing with `pytest-watch` during development:
+ # Useful for live testing with `pytest-watch` during development:
#--testmon
- # show 10 slowest invocations:
+ # Show 10 slowest invocations:
--durations=10
- # a bit of verbosity doesn't hurt:
+ # A bit of verbosity doesn't hurt:
-v
- # report all the things == -rxXs:
+ # Report all the things == -rxXs:
-ra
- # show values of the local vars in errors:
+ # Show values of the local vars in errors:
--showlocals
- # autocollect and invoke the doctests from all modules:
+ # Autocollect and invoke the doctests from all modules:
--doctest-modules
- # dump the test results in junit format:
+ # Dump the test results in junit format:
--junitxml=.test-results/pytest/results.xml
# `pytest-cov`: