From cc9139539752ce428e5eb16f2a047667d443a7ea Mon Sep 17 00:00:00 2001 From: Kingsley Yung Date: Fri, 25 Apr 2025 20:52:20 +0800 Subject: [PATCH] Fix taplo test target directories (#36690) The command `./mach test-tidy` did not check the TOML files in the subdirectories of components/shared/, since the argument for taglo command was written as `components/shared/*.toml`. This patch fixes it to include those TOML files in test-tidy. Testing: It only involves python script for test-tidy. No test is needed. Fixes: #36659 Signed-off-by: Kingsley Yung --- python/servo/testing_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 7d91a190bd1..845b09b622a 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -58,7 +58,7 @@ TOML_GLOBS = [ "*.toml", ".cargo/*.toml", "components/*/*.toml", - "components/shared/*.toml", + "components/shared/*/*.toml", "ports/*/*.toml", "support/*/*.toml", ]