From 54f87fafbf5d4be0a25568ec4df61456eea31d59 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 1 Aug 2010 15:34:36 -0400 Subject: Updates for 3.2 --- allcoverage.cmd | 4 ++-- allkits.cmd | 6 +++--- alltests.cmd | 10 +--------- howto.txt | 4 ++++ 4 files changed, 10 insertions(+), 14 deletions(-) diff --git a/allcoverage.cmd b/allcoverage.cmd index 5d80b4f..dc7c9ee 100644 --- a/allcoverage.cmd +++ b/allcoverage.cmd @@ -5,8 +5,8 @@ del .coverage.* set COVERAGE_PROCESS_START=c:\ned\coverage\trunk\covcov.ini set COVERAGE_COVERAGE=1 -for %%v in (23 24 25 26 27 31) do ( - call \ned\bin\switchpy %%v +for %%v in (23 24 25 26 27 31 32) do ( + call \ned\bin\switchpy c:\vpy\coverage\%%v 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 diff --git a/allkits.cmd b/allkits.cmd index 0d000a4..e27098f 100644 --- a/allkits.cmd +++ b/allkits.cmd @@ -1,11 +1,11 @@ @REM Build all the kits for coverage.py @REM Add "upload" onto the command line to also upload. -for %%v in (23 24 25 26 27 31) do ( - call \ned\bin\switchpy %%v +for %%v in (23 24 25 26 27 31 32) do ( + call \ned\bin\switchpy c:\vpy\coverage\%%v python setup.py bdist_wininst %1 ) -call \ned\bin\switchpy 26 +call \ned\bin\switchpy c:\vpy\coverage\26 set TAR_OPTIONS=--group=100 python setup.py sdist --formats=gztar %1 set TAR_OPTIONS= diff --git a/alltests.cmd b/alltests.cmd index 8fd64d6..425fe1c 100644 --- a/alltests.cmd +++ b/alltests.cmd @@ -4,7 +4,7 @@ call \ned\bin\switchpy c:\vpy\coverage\25 quiet make --quiet testdata -for %%v in (23 24 25 26 27) do ( +for %%v in (23 24 25 26 27 31 32) do ( call \ned\bin\switchpy c:\vpy\coverage\%%v python setup.py -q develop set COVERAGE_TEST_TRACER=c @@ -14,12 +14,4 @@ for %%v in (23 24 25 26 27) do ( nosetests %1 %2 %3 %4 %5 %6 %7 %8 %9 ) -call \ned\bin\switchpy c:\vpy\coverage\31 -python setup.py -q develop -set COVERAGE_TEST_TRACER=c -python c:\vpy\coverage\31\Scripts\nosetests3 %1 %2 %3 %4 %5 %6 %7 %8 %9 -del coverage\tracer.pyd -set COVERAGE_TEST_TRACER=py -python c:\vpy\coverage\31\Scripts\nosetests3 %1 %2 %3 %4 %5 %6 %7 %8 %9 - make --quiet clean diff --git a/howto.txt b/howto.txt index 07e231f..9d2f812 100644 --- a/howto.txt +++ b/howto.txt @@ -58,6 +58,10 @@ - On Py 2.x: need setuptools installed - On Py 3.x: need Distribute installed - Need nose installed + - nose for py 2.x + - nose3 for py 3.x + - copy Scripts\nosetest3.exe to Scripts\nosetests.exe + - copy Scripts\nosetest3-script.py to Scripts\nosetests-script.py - Need to have coverage dev-installed - In each Python installation to be used, create a "coverage_test_egg.pth" containing:: -- cgit v1.2.1