aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2021-10-11 22:16:40 +0200
committerJulien Dessaux2021-10-11 22:16:40 +0200
commit4517aba8eb58b46f7c36ec4bfd3a0c49ee3813cb (patch)
tree2706f2d58d076522aadcf675553feef7e00e05d1
parentRemoved a useless len field for field lines (diff)
downloadnimfunge98-4517aba8eb58b46f7c36ec4bfd3a0c49ee3813cb.tar.gz
nimfunge98-4517aba8eb58b46f7c36ec4bfd3a0c49ee3813cb.tar.bz2
nimfunge98-4517aba8eb58b46f7c36ec4bfd3a0c49ee3813cb.zip
Cleanned nimfunge98.nimble
-rw-r--r--nimfunge98.nimble7
1 files changed, 1 insertions, 6 deletions
diff --git a/nimfunge98.nimble b/nimfunge98.nimble
index 4a21707..6ff1edc 100644
--- a/nimfunge98.nimble
+++ b/nimfunge98.nimble
@@ -16,9 +16,6 @@ requires "nim >= 1.4.8"
task tests, "Runs the test suite":
exec "testament pattern \"tests/*.nim\""
-task coverage, "Run all tests and calculate coverage":
- exec "coco --target 'tests/**/*.nim' --cov '!tests,!nimcache'"
-
import os, strformat
task fmt, "Run nimpretty on all git-managed .nim files in the current repo":
@@ -37,7 +34,5 @@ task fmt, "Run nimpretty on all git-managed .nim files in the current repo":
exec(cmd)
task clean, "Clean":
- exec "rm -rf coverage lcov.info nimcache"
- exec "rm -rf outputGotten.txt testresults tests/megatest.nim"
- exec "rm -rf src/htmldocs"
+ exec "rm -rf nimcache testresults tests/megatest.nim"
exec "find tests/ -type f -executable -delete"