diff --git a/tests/run_tests.sh b/tests/run_tests.sh new file mode 100755 index 0000000..3f08e20 --- /dev/null +++ b/tests/run_tests.sh @@ -0,0 +1,16 @@ +#!/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 \ No newline at end of file