asynctest/asynctest.nimble

13 lines
323 B
Plaintext
Raw Normal View History

2022-03-01 09:25:43 +01:00
version = "0.3.1"
2021-01-11 12:02:40 +01:00
author = "asynctest Authors"
description = "Test asynchronous code"
license = "MIT"
requires "nim >= 1.2.0 & < 2.0.0"
2021-07-07 10:32:50 +02: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"