mirror of
https://github.com/correl/elm.git
synced 2024-12-22 03:00:07 +00:00
66 lines
1.9 KiB
Bash
Executable file
66 lines
1.9 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# FORMAT
|
|
|
|
echo '-------------------------------------------------------'
|
|
echo "Checking Formatting"
|
|
|
|
which elm-format > /dev/null
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "elm-format not found"
|
|
exit 1
|
|
fi
|
|
|
|
elm-format --yes --validate exercises/**/*{.example,Tests.elm}
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "*******************************************************************"
|
|
echo "*******************************************************************"
|
|
echo "** elm-format failed **"
|
|
echo "** perhaps some of your changes are not formatted? **"
|
|
echo "** Please run elm-format before pushing. **"
|
|
echo "*******************************************************************"
|
|
echo "*******************************************************************"
|
|
exit 1
|
|
else
|
|
echo "formatting looks good!"
|
|
fi
|
|
|
|
|
|
# TEST
|
|
|
|
declare -i TEST_RESULT=0
|
|
FAILED_EXERCISES=''
|
|
|
|
for example_file in exercises/**/*.example
|
|
do
|
|
exercise_dir=$(dirname $example_file)
|
|
exercise=$(basename $example_file .example)
|
|
mv "$exercise_dir/$exercise.elm" "$exercise_dir/$exercise.impl"
|
|
mv "$exercise_dir/$exercise.example" "$exercise_dir/$exercise.elm"
|
|
echo '-------------------------------------------------------'
|
|
echo "Testing $exercise"
|
|
|
|
# prevent elm-test from installing dependencies
|
|
mv $exercise_dir/elm-package.json $exercise_dir/elm-package.json.disabled
|
|
|
|
elm-test $exercise_dir/*Tests.elm
|
|
|
|
# capture result from last command (elm-test)
|
|
if [ $? -ne 0 ]; then
|
|
TEST_RESULT=1
|
|
FAILED_EXERCISES+="$exercise\n"
|
|
fi
|
|
|
|
# be kind, rewind
|
|
mv $exercise_dir/elm-package.json.disabled $exercise_dir/elm-package.json
|
|
mv "$exercise_dir/$exercise.elm" "$exercise_dir/$exercise.example"
|
|
mv "$exercise_dir/$exercise.impl" "$exercise_dir/$exercise.elm"
|
|
done
|
|
|
|
if [ $TEST_RESULT -ne 0 ]; then
|
|
echo "The following exercises failed"
|
|
printf $FAILED_EXERCISES
|
|
exit $TEST_RESULT
|
|
fi
|