asynctest/asynctest.nimble
2023-08-28 16:22:21 +02:00

11 lines
288 B
Nim

version = "0.4.1"
author = "asynctest Authors"
description = "Test asynchronous code"
license = "MIT"
task test, "Runs the test suite":
for module in ["stdlib", "chronos", "unittest2"]:
withDir "testmodules/" & module:
exec "nimble install -d -y"
exec "nimble test -y"