diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-13 08:19:22 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-13 08:19:22 -0400 |
commit | 2b9d62727d97dcdd72e88914d66f361372097368 (patch) | |
tree | 21312a016e40240fb5c17273b3a7e0f2cbf6a88d | |
parent | 03bd67265b6585b3965349eb89d482416dc2563d (diff) | |
download | python-coveragepy-git-2b9d62727d97dcdd72e88914d66f361372097368.tar.gz |
Run just specific tests
-rw-r--r-- | alltests.cmd | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/alltests.cmd b/alltests.cmd index 0a4888d3..9be4f4b3 100644 --- a/alltests.cmd +++ b/alltests.cmd @@ -1,31 +1,31 @@ call \ned\bin\switchpy 23
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
-nosetests
+nosetests %1
del coverage\tracer.pyd
set COVERAGE_TEST_TRACER=py
-nosetests
+nosetests %1
call \ned\bin\switchpy 24
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
-nosetests
+nosetests %1
del coverage\tracer.pyd
set COVERAGE_TEST_TRACER=py
-nosetests
+nosetests %1
call \ned\bin\switchpy 25
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
-nosetests
+nosetests %1
del coverage\tracer.pyd
set COVERAGE_TEST_TRACER=py
-nosetests
+nosetests %1
call \ned\bin\switchpy 26
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
-nosetests
+nosetests %1
del coverage\tracer.pyd
set COVERAGE_TEST_TRACER=py
-nosetests
+nosetests %1
|