diff options
Diffstat (limited to 'nimfunge98.nimble')
-rw-r--r-- | nimfunge98.nimble | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nimfunge98.nimble b/nimfunge98.nimble index e860c43..71d4e92 100644 --- a/nimfunge98.nimble +++ b/nimfunge98.nimble @@ -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" |