bump coverage floor again

This commit is contained in:
Emil Lerch 2026-04-23 07:00:40 -07:00
parent 6ec6bd634b
commit b9f580fa76
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ repos:
- id: test - id: test
name: Run zig build test name: Run zig build test
entry: zig entry: zig
args: ["build", "coverage", "-Dcoverage-threshold=53"] args: ["build", "coverage", "-Dcoverage-threshold=54"]
language: system language: system
types: [file] types: [file]
pass_filenames: false pass_filenames: false

View file

@ -7,7 +7,7 @@ zig build # build the zfin binary (output: zig-out/bin/zfin)
zig build test # run all tests (single binary, discovers all tests via refAllDeclsRecursive) zig build test # run all tests (single binary, discovers all tests via refAllDeclsRecursive)
zig build run -- <args> # build and run CLI zig build run -- <args> # build and run CLI
zig build docs # generate library documentation zig build docs # generate library documentation
zig build coverage -Dcoverage-threshold=53 # run tests with kcov coverage (Linux only) zig build coverage -Dcoverage-threshold=54 # run tests with kcov coverage (Linux only)
``` ```
**Tooling** (managed via `.mise.toml`): **Tooling** (managed via `.mise.toml`):