aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarek Ziade <tarek@ziade.org>2010-05-19 11:49:00 +0200
committerTarek Ziade <tarek@ziade.org>2010-05-19 11:49:00 +0200
commit24773fa31a13fc0058aed577d566cb528a769061 (patch)
tree6dd41a8b773223ae95200c4cf1e86dd3ae44b2af
parent74a3de058c276bc12ed9a7d9d63487b80fe73c5a (diff)
downloadexternal_python_setuptools-24773fa31a13fc0058aed577d566cb528a769061.tar.gz
external_python_setuptools-24773fa31a13fc0058aed577d566cb528a769061.tar.bz2
external_python_setuptools-24773fa31a13fc0058aed577d566cb528a769061.zip
added the -q flag and make sure the build folder is removed when python 3 tests are run
--HG-- branch : distribute extra : rebase_source : 5ebb6fedf532a2a517cbcf522cc9ec3a9066ea0a
-rw-r--r--test.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/test.sh b/test.sh
index ac309dec..cc637f68 100644
--- a/test.sh
+++ b/test.sh
@@ -1,6 +1,7 @@
-python2.3 setup.py test
-python2.4 setup.py test
-python2.5 setup.py test
-python2.6 setup.py test
-python3.1 setup.py test
+python2.3 setup.py -q test
+python2.4 setup.py -q test
+python2.5 setup.py -q test
+python2.6 setup.py -q test
+rm -rf build
+python3.1 setup.py -q test