diff options
author | Julien Dessaux | 2021-10-01 19:06:33 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-10-01 19:06:33 +0200 |
commit | 40257e354d054c0a007adb7139a031ca7cb941fa (patch) | |
tree | cabdc6e6095ddf8fb30c4f363a07d07bac5e3f1c /nimfunge98.nimble | |
parent | Began implementing the funge field (diff) | |
download | nimfunge98-40257e354d054c0a007adb7139a031ca7cb941fa.tar.gz nimfunge98-40257e354d054c0a007adb7139a031ca7cb941fa.tar.bz2 nimfunge98-40257e354d054c0a007adb7139a031ca7cb941fa.zip |
Continued implementing the funge space field
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" |