Skip to content

Commit c1d95eb

Browse files
fix
1 parent ec752bd commit c1d95eb

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

tests/run_tests.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env bash
2+
3+
ln -s ../raylib
4+
ln -s ../pyray
5+
ln -s ../examples
6+
for FILE in *.py
7+
do
8+
if python3 $FILE; then
9+
echo $FILE returned true
10+
else
11+
echo $FILE returned some error
12+
rm raylib pyray examples
13+
exit
14+
fi
15+
done
16+
rm raylib pyray examples

0 commit comments

Comments
 (0)