summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--allcoverage.cmd4
-rw-r--r--allkits.cmd6
-rw-r--r--alltests.cmd10
-rw-r--r--howto.txt4
4 files changed, 10 insertions, 14 deletions
diff --git a/allcoverage.cmd b/allcoverage.cmd
index 5d80b4f3..dc7c9ee5 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 0d000a48..e27098f4 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 8fd64d6c..425fe1c1 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 07e231fa..9d2f8122 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::