diff options
Diffstat (limited to 'make-test')
-rwxr-xr-x | make-test | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 |