diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-12-08 11:55:57 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-12-08 12:15:46 -0500 |
commit | b4a46264fa0d029591c368ac95af692afc2bf471 (patch) | |
tree | 52b487f780ccbd12f83a8341527ee0bd92100928 | |
parent | ae147cec4dda255b7d2119cc595256ba15dcba0f (diff) | |
download | python-coveragepy-git-b4a46264fa0d029591c368ac95af692afc2bf471.tar.gz |
A little easier to read in contributing.rst
-rw-r--r-- | doc/contributing.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/contributing.rst b/doc/contributing.rst index 6d783999..a4c9967c 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -140,16 +140,16 @@ respectively. You can also affect the test runs with environment variables. Define any of these as 1 to use them: -- COVERAGE_NO_PYTRACER disables the Python tracer if you only want to run the +- COVERAGE_NO_PYTRACER: disables the Python tracer if you only want to run the CTracer tests. -- COVERAGE_NO_CTRACER disables the C tracer if you only want to run the +- COVERAGE_NO_CTRACER: disables the C tracer if you only want to run the PyTracer tests. -- COVERAGE_AST_DUMP will dump the AST tree as it is being used during code +- COVERAGE_AST_DUMP: will dump the AST tree as it is being used during code parsing. -- COVERAGE_KEEP_TMP keeps the temporary directories in which tests are run. +- COVERAGE_KEEP_TMP: keeps the temporary directories in which tests are run. This makes debugging tests easier. The temporary directories are at ``$TMPDIR/coverage_test/*``, and are named for the test that made them. |