diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-29 23:26:25 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-29 23:26:25 -0400 |
commit | bbecac495148157b40edb1b3af6367c8f22e973f (patch) | |
tree | 5a52bdf9a2839bd5c7177077a40d952814eacbfd | |
parent | 90072a5d53f5f8d14be67d937990761b62190ad8 (diff) | |
download | python-coveragepy-git-bbecac495148157b40edb1b3af6367c8f22e973f.tar.gz |
Now using virtualenv for test versions of Python.
-rw-r--r-- | alltests.cmd | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/alltests.cmd b/alltests.cmd index 759a4f5a..8fd64d6c 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
|