summaryrefslogtreecommitdiff
path: root/doc/contributing.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-09-17 20:15:53 -0400
committerNed Batchelder <ned@nedbatchelder.com>2013-09-17 20:15:53 -0400
commita73c2b9bfe6679423cc8e1e8f83538a1caa030b4 (patch)
treef8df74c332d4b3c068bd493c5a4c1a3f5561b65c /doc/contributing.rst
parenta5d67a849961b4d16ef72f08e3ebb7ddf7d96de8 (diff)
downloadpython-coveragepy-git-a73c2b9bfe6679423cc8e1e8f83538a1caa030b4.tar.gz
Remove notes about me being available for custom work, and rewrap many paragraphs.
Diffstat (limited to 'doc/contributing.rst')
-rw-r--r--doc/contributing.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/contributing.rst b/doc/contributing.rst
index 6c422b55..88c99a99 100644
--- a/doc/contributing.rst
+++ b/doc/contributing.rst
@@ -104,8 +104,8 @@ The tests are written as standard unittest-style tests, and are run with
(and so on...)
Tox runs the complete test suite twice for each version of Python you have
-installed. The first run uses the Python implementation of the trace
-function, the second uses the C implementation.
+installed. The first run uses the Python implementation of the trace function,
+the second uses the C implementation.
To limit tox to just a few versions of Python, use the ``-e`` switch::
@@ -115,8 +115,8 @@ To run just a few tests, you can use nose test selector syntax::
$ tox tests.test_misc:SetupPyTest.test_metadata
-This looks in `tests/test_misc.py` to find the `SetupPyTest` class, and runs the
-`test_metadata` test method.
+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
submitting a change.