mirror of
https://github.com/correl/elm.git
synced 2024-11-21 19:18:42 +00:00
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:
parent
7b3e9e4cb2
commit
1ebbaae152
2 changed files with 1 additions and 2 deletions
|
@ -41,7 +41,7 @@ do
|
||||||
exercise_name=$(basename $example_file .example.elm)
|
exercise_name=$(basename $example_file .example.elm)
|
||||||
cp "$exercise_dir/$exercise_name.example.elm" "build/$exercise_name.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/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 '-------------------------------------------------------'
|
||||||
echo "Testing $exercise_name"
|
echo "Testing $exercise_name"
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "elm package install -y",
|
|
||||||
"test": "elm-test"
|
"test": "elm-test"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
Loading…
Reference in a new issue