Remove skips from tests before checking in CI

This is a bit gross, but I think optimizing for the end users is important enough to justify the dance.
This commit is contained in:
Erik Simmler 2017-07-05 20:40:19 -04:00
parent 7b3e9e4cb2
commit 1ebbaae152
2 changed files with 1 additions and 2 deletions

View file

@ -41,7 +41,7 @@ do
exercise_name=$(basename $example_file .example.elm)
cp "$exercise_dir/$exercise_name.example.elm" "build/$exercise_name.elm"
cp "$exercise_dir/tests/elm-package.json" build/tests/
cp "$exercise_dir/tests/Tests.elm" build/tests/
cat "$exercise_dir/tests/Tests.elm" | sed 's/skip <|//g' > build/tests/Tests.elm
echo '-------------------------------------------------------'
echo "Testing $exercise_name"

View file

@ -1,6 +1,5 @@
{
"scripts": {
"postinstall": "elm package install -y",
"test": "elm-test"
},
"dependencies": {