Archived
1
0
Fork 0

Continued implementing the funge space field

This commit is contained in:
Julien Dessaux 2021-10-01 19:06:33 +02:00
parent 9a5ff5f233
commit 40257e354d
3 changed files with 296 additions and 24 deletions

View file

@ -13,12 +13,13 @@ requires "nim >= 1.4.8"
# Tasks
task integration, "Runs the test suite":
exec "testament all"
task test, "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'"
task clean, "Clean":
exec "rm -rf coverage lcov.info nimcache"
exec "rm -rf outputGotten.txt testresults tests/megatest tests/megatest.nim"
exec "rm -rf outputGotten.txt testresults tests/megatest.nim"
exec "find tests/ -type f -executable -delete"