third_party.pylibs.pylint.src/test/fulltest.sh
2009-11-25 18:45:01 +01:00

20 lines
532 B
Bash
Executable File

#!/bin/sh
if [ $@ ] ; then
PYVERSIONS=$@
else
PYVERSIONS=`pyversions -iv`
fi
cd `dirname $0`
for ver in $PYVERSIONS; do
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo `python$ver -V`
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
python$ver `which pytest`
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
echo `python$ver -V` -OO
python$ver -OO `which pytest`
done