diff --git a/Makefile b/Makefile index a507610..5006316 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,7 @@ update: | update-common # Builds and run a part of the test suite test: | build deps echo -e $(BUILD_MSG) "$@" && \ - $(ENV_SCRIPT) nim testAll $(NIM_PARAMS) config.nims + $(ENV_SCRIPT) nim test $(NIM_PARAMS) config.nims # usual cleaning clean: | clean-common diff --git a/codexdht.nimble b/codexdht.nimble index dc47d8d..96416c4 100644 --- a/codexdht.nimble +++ b/codexdht.nimble @@ -26,6 +26,9 @@ requires "questionable" task testAll, "Run DHT tests": exec "nim c -r tests/testAll.nim" +task test, "Run DHT tests": + exec "nim c -r --verbosity:0 tests/testAllParallel.nim" + # task coverage, "generates code coverage report": # var (output, exitCode) = gorgeEx("which lcov") # if exitCode != 0: