Add utility to test specs individually

This commit is contained in:
Michael Miller 2022-11-29 03:14:24 -07:00
parent c256ef763e
commit 321c15407d
No known key found for this signature in database
GPG key ID: AC78B32D30CE34A2
2 changed files with 10 additions and 0 deletions

5
util/test-all-individually.sh Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -e
find spec/ -type f -name \*_spec.cr -print0 | \
xargs -0 -n1 time crystal spec --error-on-warnings -v