asynctest/asynctest.nimble

12 lines
335 B
Plaintext
Raw Normal View History

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