/ asynctest.nimble
asynctest.nimble
 1  version = "0.5.4"
 2  author = "asynctest Authors"
 3  description = "Test asynchronous code"
 4  license = "MIT"
 5  
 6  skipDirs = @["testmodules"]
 7  
 8  task test, "Runs the test suite":
 9    for module in ["stdlib", "chronosv3", "chronosv4", "unittest2"]:
10      withDir "testmodules/" & module:
11        delEnv "NIMBLE_DIR" # use nimbledeps dir
12        exec "nimble install -d -y"
13        exec "nimble test -y"