Commit e1ad7a3a authored by Tarek Ziade's avatar Tarek Ziade

make sure tests.sh return the exit code, and nicer outputs

--HG--
branch : distribute
extra : rebase_source : 6e614dc25657d2b5ccabbf4ac48c778e712cff30
parent bacf3625
python2.3 setup.py -q test #!/bin/sh
python2.4 setup.py -q test echo -n "Running tests for Python 2.3..."
python2.5 setup.py -q test python2.3 setup.py -q test > /dev/null 2> /dev/null
python2.6 setup.py -q test if [ $? -ne 0 ];then
python2.7 setup.py -q test 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
echo "Failed"
exit $1
else
echo "Success"
fi
echo -n "Running tests for Python 2.5..."
python2.5 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.6..."
python2.6 setup.py -q test > /dev/null 2> /dev/null
if [ $? -ne 0 ];then
echo "Failed"
exit $1
else
echo "Success"
fi
rm -rf build rm -rf build
python3.1 setup.py -q test echo -n "Running tests for Python 3.1..."
python3.1 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