Commit 03ae7b21 authored by Lennart Regebro's avatar Lennart Regebro

Tests run under Python 3.3 now.

--HG--
branch : distribute
extra : rebase_source : 93e360785483082ab272dbf693d3e6ac3772b6ab
parent 9dc9fea4
......@@ -212,6 +212,9 @@ dist = setup(
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.1
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Archiving :: Packaging
Topic :: System :: Systems Administration
......
......@@ -55,3 +55,13 @@ else
echo "Success"
fi
rm -rf build
echo -n "Running tests for Python 3.3..."
python3.3 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