summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-02-02 11:27:48 -0500
committerNed Batchelder <ned@nedbatchelder.com>2013-02-02 11:27:48 -0500
commit75d05bdefc18d5d1c736ff5379dc233ec3847974 (patch)
treebe1f409c7e330564399dbdf7b96863d88a3479fb /doc
parentd5f8295256d04ba8cb5b42a16ce741a34c9bb3c5 (diff)
downloadpython-coveragepy-75d05bdefc18d5d1c736ff5379dc233ec3847974.tar.gz
Directory changed: test->tests. Adapt.
Diffstat (limited to 'doc')
-rw-r--r--doc/contributing.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/contributing.rst b/doc/contributing.rst
index 90b9ba1..6c422b5 100644
--- a/doc/contributing.rst
+++ b/doc/contributing.rst
@@ -113,9 +113,9 @@ To limit tox to just a few versions of Python, use the ``-e`` switch::
To run just a few tests, you can use nose test selector syntax::
- $ tox test.test_misc:SetupPyTest.test_metadata
+ $ tox tests.test_misc:SetupPyTest.test_metadata
-This looks in `test/test_misc.py` to find the `SetupPyTest` class, and runs the
+This looks in `tests/test_misc.py` to find the `SetupPyTest` class, and runs the
`test_metadata` test method.
Of course, run all the tests on every version of Python you have, before
@@ -129,8 +129,8 @@ I try to keep the coverage.py as clean as possible. I use pylint to alert me
to possible problems::
$ make lint
- pylint --rcfile=.pylintrc coverage setup.py test
- python -m tabnanny coverage setup.py test
+ pylint --rcfile=.pylintrc coverage setup.py tests
+ python -m tabnanny coverage setup.py tests
python igor.py check_eol
The source is pylint-clean, even if it's because there are pragmas quieting