This release adds support for selecting tests by name using glob patterns via the new -m/--match CLI option.
🚀 Features
Section titled “🚀 Features”Test selection by name pattern matching
Section titled “Test selection by name pattern matching”Feb 6, 2026 · @mavam, @claude · #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.