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
2022-02-02 20:29:45 +00:00

17 lines
No EOL
291 B
Bash
Executable file

#!/usr/bin/env bash
rm raylib pyray examples
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