diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-29 06:19:18 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-29 06:19:18 -0400 |
commit | 146e266c8a852b21ba2dd4fbfa1f9748344a351b (patch) | |
tree | f489671b85fd2d56b87c29b7ac4813255a21b485 | |
parent | e37616bb7059ee161efd4d21f1dd01bb5ff82693 (diff) | |
download | python-coveragepy-git-146e266c8a852b21ba2dd4fbfa1f9748344a351b.tar.gz |
Keep line lengths proper
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | setup.py | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -23,6 +23,7 @@ LINTABLE = \ coverage \ scripts/coverage \ setup.py \ + test/backtest.py \ test/coverage_coverage.py \ test/coveragetest.py \ test/test_api.py \ @@ -2,9 +2,9 @@ """Code coverage measurement for Python -Coverage.py measures code coverage, typically during test execution. It uses the -code analysis tools and tracing hooks provided in the Python standard library to -determine which lines are executable, and which have been executed. +Coverage.py measures code coverage, typically during test execution. It uses +the code analysis tools and tracing hooks provided in the Python standard +library to determine which lines are executable, and which have been executed. Coverage.py runs on Pythons 2.3 through 3.1. |