blob: ac4dbf74185fa9c0c1fa8b00ea1e318b798c7445 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/bash
# Script to run nosetests under multiple versions of Python
versions="python2.4 python2.5 python2.6"
for name in $versions
do
echo ""
executable="/usr/bin/$name"
if [[ -f $executable ]]; then
echo "[ $name: Starting tests... ]"
if $executable /usr/bin/nosetests
then
echo "[ $name: Tests OK ]"
else
echo "[ $name: Tests FAILED ]"
((failures += 1))
fi
else
echo "[ $name: Not found ]"
fi
done
if [ $failures ]; then
echo ""
echo "[ FAILED under $failures version(s) ]"
exit $failures
fi
|