aboutsummaryrefslogtreecommitdiff
path: root/run-robot-tests.sh
blob: 9259bd90157a3cb6d257cf2f74c03194344b9f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
set -e
export DISPLAY=:0
echo "env"
echo "==="
env
echo "who"
echo "==="
who
python -m robot robot-framework-tests/ || true
python robot-framework-tests/robot-results-parser.py output.xml >> results.txt
exit 0