asynctest/asynctest.nimble

14 lines
379 B
Plaintext
Raw Normal View History

2025-04-08 10:38:46 +02:00
version = "0.5.4"
2021-01-11 12:02:40 +01:00
author = "asynctest Authors"
description = "Test asynchronous code"
license = "MIT"
skipDirs = @["testmodules"]
2021-07-07 10:32:50 +02:00
task test, "Runs the test suite":
2023-12-20 15:11:32 +01:00
for module in ["stdlib", "chronosv3", "chronosv4", "unittest2"]:
2021-07-07 10:32:50 +02:00
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"