From 40257e354d054c0a007adb7139a031ca7cb941fa Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Fri, 1 Oct 2021 19:06:33 +0200 Subject: Continued implementing the funge space field --- nimfunge98.nimble | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'nimfunge98.nimble') 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" -- cgit v1.2.3