# Tenzir Test v1.5.0

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

## 🚀 Features

### Add fine-grained run-skipped selectors

Feb 15, 2026 · [@mavam](https://github.com/mavam), [@codex](https://github.com/codex) · [#23](https://github.com/tenzir/test/pull/23), [#24](https://github.com/tenzir/test/pull/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):

```sh
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.

[ Download on GitHub ](https://github.com/tenzir/test/releases/tag/v1.5.0)

[Get the release artifacts and source code.](https://github.com/tenzir/test/releases/tag/v1.5.0)