fix
This commit is contained in:
parent
ec752bdab7
commit
c1d95eba71
1 changed files with 16 additions and 0 deletions
16
tests/run_tests.sh
Executable file
16
tests/run_tests.sh
Executable file
|
@ -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
|
Reference in a new issue