summaryrefslogtreecommitdiffstats
path: root/make-test
diff options
context:
space:
mode:
Diffstat (limited to 'make-test')
-rwxr-xr-xmake-test3
1 files changed, 1 insertions, 2 deletions
diff --git a/make-test b/make-test
index f916cc3f..485447a6 100755
--- a/make-test
+++ b/make-test
@@ -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