summaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
authorLennart Regebro <regebro@gmail.com>2012-08-20 19:28:30 +0200
committerLennart Regebro <regebro@gmail.com>2012-08-20 19:28:30 +0200
commita4b326909d1f64037412b5048d59199bc6b648e8 (patch)
tree0822b2bac1c094a4e304bc12bb0c23de4b1a69a8 /test.sh
parentc9884d20b6860356be4f167ece51b54bd7a3da61 (diff)
downloadpython-setuptools-git-a4b326909d1f64037412b5048d59199bc6b648e8.tar.gz
I guess nobody uses test.sh anymore, since it's unmaintained. Updated anyway.
--HG-- branch : distribute extra : rebase_source : d4105c985efec3f6d7e298615299c5cc9359cbc2
Diffstat (limited to 'test.sh')
-rw-r--r--test.sh19
1 files changed, 10 insertions, 9 deletions
diff --git a/test.sh b/test.sh
index 883271a4..8f5ec654 100644
--- a/test.sh
+++ b/test.sh
@@ -1,13 +1,4 @@
#!/bin/sh
-echo -n "Running tests for Python 2.3..."
-python2.3 setup.py -q test > /dev/null 2> /dev/null
-if [ $? -ne 0 ];then
- echo "Failed"
- exit $1
-else
- echo "Success"
-fi
-
echo -n "Running tests for Python 2.4..."
python2.4 setup.py -q test > /dev/null 2> /dev/null
if [ $? -ne 0 ];then
@@ -45,3 +36,13 @@ else
echo "Success"
fi
+rm -rf build
+echo -n "Running tests for Python 3.2..."
+python3.2 setup.py -q test > /dev/null 2> /dev/null
+if [ $? -ne 0 ];then
+ echo "Failed"
+ exit $1
+else
+ echo "Success"
+fi
+