mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-23 13:20:03 +00:00
9 lines
269 B
Plaintext
9 lines
269 B
Plaintext
|
task test, "Run tests":
|
||
|
for f in listFiles("tests"):
|
||
|
if f.len > 4 and f[^4..^1] == ".nim":
|
||
|
let cmd = "nim c -r -f --threads:on --hints:off --verbosity:0 --skipParentCfg:on --skipUserCfg:on " & f
|
||
|
echo cmd
|
||
|
exec cmd
|
||
|
rmFile(f[0..^5].toExe())
|
||
|
|