summaryrefslogtreecommitdiff
path: root/alltests.cmd
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-05-29 23:26:25 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-05-29 23:26:25 -0400
commitb3222a25b564653e48f4d233f4133d82be26c138 (patch)
tree4536a4c59f04e5ea5cf62c6577570ffc52f8ea80 /alltests.cmd
parente2fbf908a516a2333a1b2458a90880e74ecab29b (diff)
downloadpython-coveragepy-b3222a25b564653e48f4d233f4133d82be26c138.tar.gz
Now using virtualenv for test versions of Python.
Diffstat (limited to 'alltests.cmd')
-rw-r--r--alltests.cmd10
1 files changed, 5 insertions, 5 deletions
diff --git a/alltests.cmd b/alltests.cmd
index 759a4f5..8fd64d6 100644
--- a/alltests.cmd
+++ b/alltests.cmd
@@ -1,11 +1,11 @@
@echo off
@rem all the Python installs have a .pth pointing to the egg file created by
@rem 2.5, so install the testdata in 2.5
-call \ned\bin\switchpy 25 quiet
+call \ned\bin\switchpy c:\vpy\coverage\25 quiet
make --quiet testdata
for %%v in (23 24 25 26 27) do (
- call \ned\bin\switchpy %%v
+ call \ned\bin\switchpy c:\vpy\coverage\%%v
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
nosetests %1 %2 %3 %4 %5 %6 %7 %8 %9
@@ -14,12 +14,12 @@ for %%v in (23 24 25 26 27) do (
nosetests %1 %2 %3 %4 %5 %6 %7 %8 %9
)
-call \ned\bin\switchpy 31
+call \ned\bin\switchpy c:\vpy\coverage\31
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
-python \python31\Scripts\nosetests3 %1 %2 %3 %4 %5 %6 %7 %8 %9
+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 \python31\Scripts\nosetests3 %1 %2 %3 %4 %5 %6 %7 %8 %9
+python c:\vpy\coverage\31\Scripts\nosetests3 %1 %2 %3 %4 %5 %6 %7 %8 %9
make --quiet clean