diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-12-08 12:34:38 -0700 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-12-08 12:34:38 -0700 |
commit | 8a2902a2a240108e16561679e01f52b362097b3a (patch) | |
tree | b3768555d518e0683c04803c6b4305de82d0743d /make-test | |
parent | 5a2b0cd6b8151a18fa5fd0e4f7eacf9e2c9dde8f (diff) | |
download | freeipa-8a2902a2a240108e16561679e01f52b362097b3a.tar.gz freeipa-8a2902a2a240108e16561679e01f52b362097b3a.tar.xz freeipa-8a2902a2a240108e16561679e01f52b362097b3a.zip |
Re-enable Python2.4 tests and fixed some small things broken under Python2.4
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 |