third_party.pylibs.pylint.src/test/fulltest.sh

20 lines
532 B
Bash
Raw Normal View History

2006-04-26 10:48:09 +00:00
#!/bin/sh
if [ $@ ] ; then
PYVERSIONS=$@
else
2008-09-23 10:59:55 +00:00
PYVERSIONS=`pyversions -iv`
2006-04-26 10:48:09 +00:00
fi
2009-11-25 17:45:01 +00:00
cd `dirname $0`
2006-04-26 10:48:09 +00:00
for ver in $PYVERSIONS; do
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo `python$ver -V`
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
2009-11-25 17:45:01 +00:00
python$ver `which pytest`
2006-04-26 10:48:09 +00:00
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
echo `python$ver -V` -OO
2009-11-25 17:45:01 +00:00
python$ver -OO `which pytest`
2008-09-23 10:59:55 +00:00
done