Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2295)

Unified Diff: third_party/coverage-3.7.1/doc/contributing.rst

Issue 225633007: Upgrade to coverage 3.7.1 and have it auto-build itself on first use. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: sigh our imports are a mess Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/coverage-3.7.1/doc/config.rst ('k') | third_party/coverage-3.7.1/doc/excluding.rst » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/coverage-3.7.1/doc/contributing.rst
diff --git a/third_party/coverage-3.6/doc/contributing.rst b/third_party/coverage-3.7.1/doc/contributing.rst
similarity index 94%
rename from third_party/coverage-3.6/doc/contributing.rst
rename to third_party/coverage-3.7.1/doc/contributing.rst
index 90b9ba1bafb3b1563dd6951be929c25689c45342..88c99a99fcdc5069854a6cf71a99c815a8efecc4 100644
--- a/third_party/coverage-3.6/doc/contributing.rst
+++ b/third_party/coverage-3.7.1/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::
@@ -113,10 +113,10 @@ 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
-`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.
@@ -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
« no previous file with comments | « third_party/coverage-3.7.1/doc/config.rst ('k') | third_party/coverage-3.7.1/doc/excluding.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698