Source stackrc in exercises.
Exit with error if there are failed tests.
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
source ./stackrc
|
||||
# Run everything in the exercises/ directory that isn't explicitly disabled
|
||||
|
||||
# comma separated list of script basenames to skip
|
||||
@@ -44,3 +45,7 @@ done
|
||||
for script in $failures; do
|
||||
echo FAILED $script
|
||||
done
|
||||
|
||||
if [ -n "$failures" ] ; then
|
||||
exit 1
|
||||
fi
|
||||
|
Reference in New Issue
Block a user