diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-15 21:24:25 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-15 21:24:25 -0400 |
commit | ede9a9223f358eb19dcca0302f199e1045b6b7d9 (patch) | |
tree | 63317ab140ce6ab8505e9d648579a82aac4b2b7e | |
parent | 1997205c35faba1e872390da3196796e071e4f99 (diff) | |
download | python-coveragepy-git-ede9a9223f358eb19dcca0302f199e1045b6b7d9.tar.gz |
Create proper data to start, then clean up at the end, quietly.
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | alltests.cmd | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -52,7 +52,7 @@ $(TEST_ZIP): test/covmodzip1.py zip -j $@ $+ $(TEST_EGG): test/eggsrc/setup.py test/eggsrc/egg1/egg1.py - cd test/eggsrc; python setup.py bdist_egg + cd test/eggsrc; python setup.py -q bdist_egg kit: python setup.py sdist --formats=gztar diff --git a/alltests.cmd b/alltests.cmd index c1d9e24b..73de80ed 100644 --- a/alltests.cmd +++ b/alltests.cmd @@ -1,3 +1,6 @@ +@echo off
+make --quiet testdata
+
call \ned\bin\switchpy 23
python setup.py -q develop
set COVERAGE_TEST_TRACER=c
@@ -37,3 +40,5 @@ python \python31\Scripts\nosetests3 %1 del \python31\lib\site-packages\coverage\tracer.pyd
set COVERAGE_TEST_TRACER=py
python \python31\Scripts\nosetests3 %1
+
+make --quiet clean
|