diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-20 11:00:33 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-20 11:00:33 -0500 |
commit | eab429490a28bceef756b55dc8f25c2f904933c9 (patch) | |
tree | cf4ba5053b58c9811d5f1e1532968ae556e7225d | |
parent | 7b7bf9b72099cbf004f601f6c41eb52115cb268a (diff) | |
download | python-coveragepy-git-eab429490a28bceef756b55dc8f25c2f904933c9.tar.gz |
No point measuring coverage under the Python tracer, since the tracer itself isn't measured.
-rw-r--r-- | allcoverage.cmd | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/allcoverage.cmd b/allcoverage.cmd index 2545427b..990876a6 100644 --- a/allcoverage.cmd +++ b/allcoverage.cmd @@ -1,44 +1,36 @@ @echo off
make --quiet testdata
+del .coverage.*
+
call \ned\bin\switchpy 23
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
call \ned\bin\switchpy 24
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
call \ned\bin\switchpy 25
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
call \ned\bin\switchpy 26
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
call \ned\bin\switchpy 31
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
python test\coverage_coverage.py report
|