This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
raylib-python-cffi/tests/run_tests.sh
2021-10-08 05:03:01 +01:00

16 lines
No EOL
266 B
Bash
Executable file

#!/usr/bin/env bash
ln -s ../raylib
ln -s ../pyray
ln -s ../examples
for FILE in *.py
do
if python3 $FILE; then
echo $FILE returned true
else
echo $FILE returned some error
rm raylib pyray examples
exit
fi
done
rm raylib pyray examples