Existing entry tests/*.py does not match any file at the moment, the semantic is "any py file under tests". Kernel MAINTAINERS file supports 'K: regexp' entries to match entries, but we don't support it, and I'm not sure it's the right solution here.
Instead of adding "yet another generic solution" to this problem, just add manual entries matching existing sublevels. The Python scripts section is the only one requiring this, and we can always reconsider the K: approach later if another use case emerge. Signed-off-by: Pierrick Bouvier <[email protected]> --- MAINTAINERS | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 2b5b581e173..61af956ed82 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3472,7 +3472,9 @@ M: John Snow <[email protected]> M: Cleber Rosa <[email protected]> S: Odd Fixes F: scripts/*.py -F: tests/*.py +F: tests/*/*.py +F: tests/*/*/*.py +F: tests/*/*/*/*.py Benchmark util M: Vladimir Sementsov-Ogievskiy <[email protected]> -- 2.43.0
