asynctest/asynctest.nimble

14 lines
364 B
Nim

version = "0.4.2"
author = "asynctest Authors"
description = "Test asynchronous code"
license = "MIT"
skipDirs = @["testmodules"]
task test, "Runs the test suite":
for module in ["stdlib", "chronos", "unittest2"]:
withDir "testmodules/" & module:
delEnv "NIMBLE_DIR" # use nimbledeps dir
exec "nimble install -d -y"
exec "nimble test -y"