https://github.com/robotframework/RIDE
Raw File
Tip revision: 6d43b9ad591d47f13e5f5cddf1d6158fca3dbc6a authored by Hélio Guilherme on 20 April 2024, 18:58:41 UTC
Update languages (#2753)
Tip revision: 6d43b9a
test_all.sh
#!/usr/bin/sh

export PYTHONPATH=/home/helio/github/RIDE/utest/:$PYTHONPATH
export PYTHONPATH=/home/helio/github/RIDE/src/:$PYTHONPATH

export PYTHONROOT=/usr/bin

if [ $# -ge 1 ]
then
      PY=3
      DIR="$1"
else
    PY=3
    DIR="utest"
fi

shift
if [ $# -eq 1 ]
then
    DIR="$1"
fi

cd /home/helio/github/RIDE/
for i in `ls -1R $DIR | grep ":"`
do
        a=`echo $i |sed s/://g`
        for j in `ls -1 $a/test_*py 2>/dev/null`
        do
		# printf "$j\n"
                # bypass file that is passing with invoke test
                if [ "$j" = "$a/test_DEBUG_resourcefactory.py" ]
                then
                        b=`true`
                else 
                        b=`$PYTHONROOT/python$PY $j`
                fi
                if [ $? -eq 1 ]
		then
                        printf "$b\n"
			printf "MUST FIX: $j\n"
			exit
		fi
        done
done
back to top