import tests

This commit is contained in:
Jaremy Creechley 2023-11-28 22:38:49 -07:00
parent 651f3d62a5
commit 77dfb0d576
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -67,6 +67,14 @@ task test_libbacktrace, "test with libbacktrace":
for args in allArgs:
run args, "tests/testall"
task test_profiler, "test with profiler instrumentation":
var allArgs = @[
" -d:chronosFutureId -d:chronosProfiling",
]
for args in allArgs:
run args, "tests/testall"
task docs, "Generate API documentation":
exec "mdbook build docs"
exec nimc & " doc " & "--git.url:https://github.com/status-im/nim-chronos --git.commit:master --outdir:docs/book/api --project chronos"