Re-enable Python2.4 tests and fixed some small things broken under Python2.4

This commit is contained in:
Jason Gerard DeRose
2008-12-08 12:34:38 -07:00
parent 5a2b0cd6b8
commit 8a2902a2a2
4 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,6 @@
# Script to run nosetests under multiple versions of Python
versions="python2.4 python2.5 python2.6"
versions="python2.5 python2.6"
for name in $versions
do
@@ -11,7 +10,7 @@ do
if [[ -f $executable ]]; then
echo "[ $name: Starting tests... ]"
((runs += 1))
if $executable /usr/bin/nosetests -v --with-doctest --stop
if $executable /usr/bin/nosetests --with-doctest --stop
then
echo "[ $name: Tests OK ]"
else