diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-30 08:16:52 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-30 08:16:52 -0500 |
commit | dff0bb728b87a4c573268f16a814717e7d01511b (patch) | |
tree | e10ba088b7a4b2eed2b83f87befbad2c3e013ae7 | |
parent | 2d0b60d12a8d81a6203c127ea3d9cb21cd93d884 (diff) | |
download | python-coveragepy-dff0bb728b87a4c573268f16a814717e7d01511b.tar.gz |
Adapt the all-Python scripts to the new 3.1 Distribute scheme. allcoverage.cmd still doesn't save 3.1 results for some reason...
-rw-r--r-- | allcoverage.cmd | 4 | ||||
-rw-r--r-- | alltests.cmd | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/allcoverage.cmd b/allcoverage.cmd index 5da7e15..2545427 100644 --- a/allcoverage.cmd +++ b/allcoverage.cmd @@ -34,10 +34,10 @@ 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 install
+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 \python31\lib\site-packages\coverage\tracer.pyd
+del coverage\tracer.pyd
set COVERAGE_TEST_TRACER=py
python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
diff --git a/alltests.cmd b/alltests.cmd index 7b26ab8..5aee1e4 100644 --- a/alltests.cmd +++ b/alltests.cmd @@ -34,10 +34,10 @@ set COVERAGE_TEST_TRACER=py nosetests %1 %2 %3 %4 %5 %6 %7 %8 %9
call \ned\bin\switchpy 31
-python setup.py -q install
+python setup.py -q develop
set COVERAGE_TEST_TRACER=c
python \python31\Scripts\nosetests3 %1 %2 %3 %4 %5 %6 %7 %8 %9
-del \python31\lib\site-packages\coverage\tracer.pyd
+del coverage\tracer.pyd
set COVERAGE_TEST_TRACER=py
python \python31\Scripts\nosetests3 %1 %2 %3 %4 %5 %6 %7 %8 %9
|