mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2026-09-03 20:52:56 -05:00
Renamed gen-doc.bash, run-tests.bash to make-doc, make-test respectively
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Script to run nosetests under multiple versions of Python
|
||||
|
||||
versions="python2.4 python2.5 python2.6"
|
||||
|
||||
for name in $versions
|
||||
do
|
||||
executable="/usr/bin/$name"
|
||||
if [[ -f $executable ]]; then
|
||||
echo "[ $name: Starting tests... ]"
|
||||
((runs += 1))
|
||||
if $executable /usr/bin/nosetests -v
|
||||
then
|
||||
echo "[ $name: Tests OK ]"
|
||||
else
|
||||
echo "[ $name: Tests FAILED ]"
|
||||
((failures += 1))
|
||||
fi
|
||||
else
|
||||
echo "[ $name: Not found ]"
|
||||
fi
|
||||
echo ""
|
||||
done
|
||||
|
||||
if [ $failures ]; then
|
||||
echo "[ Ran under $runs version(s); FAILED under $failures version(s) ]"
|
||||
exit $failures
|
||||
else
|
||||
echo "[ Ran under $runs version(s); all OK ]"
|
||||
fi
|
||||
Reference in New Issue
Block a user