Start adding tests, using testament.

FossilOrigin-Name: 6f368f0d303c65000c74f346b7bc39ffca964aff7767c60be2384739e5dc4d72
This commit is contained in:
mahlon 2025-03-18 02:21:06 +00:00
parent 89e879ca68
commit 1ed442a68a
16 changed files with 200 additions and 44 deletions

View file

@ -15,3 +15,10 @@ requires "nim ^= 2.0.0"
task makewrapper, "Generate the C wrapper using Futhark":
exec "nim c -d:futharkWrap --outdir=. src/kuzu.nim"
task test, "Run the test suite.":
exec "testament all"
exec "testament html"
task clean, "Remove all non-critical artifacts.":
exec "fossil clean --disable-undo --dotfiles --emptydirs -f -v"