Skip to content

This release adds fine-grained controls for running skipped tests, including a new —run-skipped-reason flag with substring and glob matching semantics.

Feb 15, 2026 · @mavam, @codex · #23, #24

tenzir-test now supports both coarse and fine-grained controls for running skipped tests.

Use --run-skipped as a sledgehammer, or --run-skipped-reason with the same matching semantics as --match (bare substring or glob):

Terminal window
tenzir-test --run-skipped
tenzir-test --run-skipped-reason 'maintenance'
tenzir-test --run-skipped-reason '*docker*'

If both options are provided, --run-skipped takes precedence.