diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-26 08:49:00 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-26 08:49:00 -0500 |
| commit | 6e70fbe8f7c80d52a2f769eb984349da14453e79 (patch) | |
| tree | 82bd699bd8ec305d6a60c35f6e82e10f6aaa8db4 /covcov.ini | |
| parent | d7bbe09016e4ea584e5bfd9bf8e62f08b4ab5efc (diff) | |
| download | python-coveragepy-6e70fbe8f7c80d52a2f769eb984349da14453e79.tar.gz | |
COVERAGE_PROCESS_START now is the name of the rc file, and we use it to measure our own coverage.
Diffstat (limited to 'covcov.ini')
| -rw-r--r-- | covcov.ini | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/covcov.ini b/covcov.ini new file mode 100644 index 0000000..97f226d --- /dev/null +++ b/covcov.ini @@ -0,0 +1,12 @@ +# Settings to use when using coverage.py to measure itself.
+[run]
+branch = 1
+data_file = c:\ned\coverage\trunk\.coverage
+
+[report]
+exclude_lines =
+ # pragma: no cover
+ def __repr__
+ if __name__ == .__main__.:
+ raise AssertionError
+
|
