dunlin/test/run.sh
2024-09-10 22:44:21 +01:00

10 lines
240 B
Bash

#!/usr/bin/env sh
for i in test/*.fnl; do
fennel --correlate $i && echo $i OK
done
for i in *.fnl; do
grep -q NO-TESTING "$i" && continue
[ "$i" = "macros.fnl" ] && continue
fennel test/test-helper.fnl $i && echo $i OK
done