asynctest/asynctest.nimble

14 lines
364 B
Plaintext
Raw Normal View History

2023-08-28 15:03:43 +00:00
version = "0.4.2"
2021-01-11 11:02:40 +00:00
author = "asynctest Authors"
description = "Test asynchronous code"
license = "MIT"
skipDirs = @["testmodules"]
2021-07-07 08:32:50 +00:00
task test, "Runs the test suite":
for module in ["stdlib", "chronos", "unittest2"]:
withDir "testmodules/" & module:
2023-08-28 15:01:25 +00:00
delEnv "NIMBLE_DIR" # use nimbledeps dir
2021-07-07 08:32:50 +00:00
exec "nimble install -d -y"
exec "nimble test -y"