asynctest/asynctest.nimble

13 lines
323 B
Plaintext
Raw Permalink Normal View History

2022-07-21 09:00:47 +00:00
version = "0.3.2"
2021-01-11 11:02:40 +00:00
author = "asynctest Authors"
description = "Test asynchronous code"
license = "MIT"
requires "nim >= 1.2.0 & < 2.0.0"
2021-07-07 08:32:50 +00:00
task test, "Runs the test suite":
for module in ["stdlib", "chronos", "unittest2"]:
withDir "testmodules/" & module:
exec "nimble install -d -y"
exec "nimble test -y"