# Tenzir Test v1.2.0

This release adds support for selecting tests by name using glob patterns via the new `-m`/`--match` CLI option.

## 🚀 Features

### Test selection by name pattern matching

Feb 6, 2026 · [@mavam](https://github.com/mavam), [@claude](https://github.com/claude) · [#13](https://github.com/tenzir/test/pull/13)

Select tests by relative path using the new `-m`/`--match` option with fnmatch glob patterns. You can repeat the option to match multiple patterns, and tests matching any pattern are selected. When you combine TEST paths with `-m` patterns, the framework runs only tests matching both (intersection). If a matched test belongs to a suite configured via `test.yaml`, all tests in that suite are included automatically. Empty or whitespace-only patterns are silently ignored.

Example: `tenzir-test -m '*context*' -m '*create*'` runs all tests whose paths contain “context” or “create” anywhere in the name.

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

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