/usr/share/doc/python-logilab-astng/test/fulltest.sh is in python-logilab-astng 0.23.0-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh
if [ $@ ] ; then
PYVERSIONS=$@
else
PYVERSIONS="2.3 2.4 2.5 2.6"
fi
PYTEST=`which pytest`
for ver in $PYVERSIONS; do
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo `python$ver -V`
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
python$ver $PYTEST
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
echo `python$ver -V` -OO
python$ver -OO $PYTEST
done
|