Continued implementing the funge space field
This commit is contained in:
parent
9a5ff5f233
commit
40257e354d
3 changed files with 296 additions and 24 deletions
|
@ -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"
|
||||
|
|
Reference in a new issue