Commit a4b32690 authored by Lennart Regebro's avatar Lennart Regebro

I guess nobody uses test.sh anymore, since it's unmaintained. Updated anyway.

--HG--
branch : distribute
extra : rebase_source : d4105c985efec3f6d7e298615299c5cc9359cbc2
parent c9884d20
#!/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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment