From 586d3a267f14f730c7703b6cf23ea83b8d17790d Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Tue, 27 May 2025 01:22:20 -0400 Subject: Consolidate testing steps into `tools/test`. I've opted to run with `--coverage` to ensure that we continue exercising coverage support. Hat tip to @wlonk for holding me accountable on this - I had thought coverage was broken, but I was holding it wrong. --- tools/test | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 tools/test (limited to 'tools/test') diff --git a/tools/test b/tools/test new file mode 100755 index 0000000..06e2159 --- /dev/null +++ b/tools/test @@ -0,0 +1,13 @@ +#!/bin/bash -e + +## tools/test +## +## Run the full test suite. +## +## Best run as `tools/test` even if you have the `tools` directory in your +## $PATH, due to naming collisions with the `test` shell builtin or `/bin/test`. + +cd "$(dirname "$0")/.." + +npx vitest --run --coverage +cargo test -- cgit v1.2.3