summaryrefslogtreecommitdiff
path: root/HACKING.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2020-05-06 22:42:46 -0500
committerMichael Merickel <michael@merickel.org>2020-05-06 22:42:46 -0500
commit2f3e7cd6365f87659aa3787cbecaee38b5a9b1d7 (patch)
treead2807abd2635886cfe7c240dbe3f3684fd4f9d7 /HACKING.txt
parent33eefaeb4542546fe5febd6e22a35418f59fbdde (diff)
downloadpyramid-2f3e7cd6365f87659aa3787cbecaee38b5a9b1d7.tar.gz
pyramid-2f3e7cd6365f87659aa3787cbecaee38b5a9b1d7.tar.bz2
pyramid-2f3e7cd6365f87659aa3787cbecaee38b5a9b1d7.zip
remove some unnecessary flags
Diffstat (limited to 'HACKING.txt')
-rw-r--r--HACKING.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/HACKING.txt b/HACKING.txt
index 7e4969990..730d08208 100644
--- a/HACKING.txt
+++ b/HACKING.txt
@@ -89,10 +89,10 @@ Running Tests
to your virtual environment:
# run a single test
- $ $TOX -e py -- --no-cov tests/test_httpexceptions.py::TestHTTPMethodNotAllowed::test_it_with_default_body_tmpl
+ $ $TOX -e py -- tests/test_httpexceptions.py::TestHTTPMethodNotAllowed::test_it_with_default_body_tmpl
# run all tests in a class
- $ $TOX -e py -- --no-cov tests/test_httpexceptions.py::TestHTTPMethodNotAllowed
+ $ $TOX -e py -- tests/test_httpexceptions.py::TestHTTPMethodNotAllowed
- For more information on how to use pytest, please refer to the pytest
documentation for selecting tests: