From a865b3242ecce63af2135468898c085e500200af Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 14 Aug 2024 10:29:09 +0200 Subject: [PATCH] sets path --- codexdht.nimble | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/codexdht.nimble b/codexdht.nimble index 01e8be3..48fb6df 100644 --- a/codexdht.nimble +++ b/codexdht.nimble @@ -24,25 +24,25 @@ requires "questionable" task testAll, "Run all test suites": exec "nimble install -d -y" - withDir "testmodule": + withDir "tests": exec "nimble testAll" task test, "Run the test suite": exec "nimble install -d -y" - withDir "testmodule": + withDir "tests": exec "nimble test" task testPart1, "Run the test suite part 1": exec "nimble install -d -y" - withDir "testmodule": + withDir "tests": exec "nimble testPart1" task testPart2, "Run the test suite part 2": exec "nimble install -d -y" - withDir "testmodule": + withDir "tests": exec "nimble testPart2" task coverage, "Run the test coverage": exec "nimble install -d -y" - withDir "testmodule": + withDir "tests": exec "nimble coverage"