From b3222a25b564653e48f4d233f4133d82be26c138 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 29 May 2010 23:26:25 -0400 Subject: Now using virtualenv for test versions of Python. --- alltests.cmd | 10 +++++----- 1 file 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 -- cgit v1.2.1