mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
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 <kingsley@kkoyung.dev>
This commit is contained in:
parent
c6a399d760
commit
cc91395397
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ TOML_GLOBS = [
|
||||||
"*.toml",
|
"*.toml",
|
||||||
".cargo/*.toml",
|
".cargo/*.toml",
|
||||||
"components/*/*.toml",
|
"components/*/*.toml",
|
||||||
"components/shared/*.toml",
|
"components/shared/*/*.toml",
|
||||||
"ports/*/*.toml",
|
"ports/*/*.toml",
|
||||||
"support/*/*.toml",
|
"support/*/*.toml",
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue