8000 Fix triage tool due to test reorganization · matplotlib/matplotlib@56cb97d · GitHub
[go: up one dir, main page]

Skip to content

Commit 56cb97d

Browse files
committed
Fix triage tool due to test reorganization
Fixes #24508
1 parent de58d98 commit 56cb97d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/triage_tests.py

Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
BASELINE_IMAGES = [
4242
Path('lib/matplotlib/tests/baseline_images'),
43-
Path('lib/mpl_toolkits/tests/baseline_images'),
43+
*Path('lib/mpl_toolkits').glob('*/tests/baseline_images'),
4444
]
4545

4646

tools/visualize_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def run(show_browser=True):
126126
show_message = True
127127

128128
if show_message:
129-
print("Open {} in a browser for a visual comparison.".format(index))
129+
print(f"Open {index} in a browser for a visual comparison.")
130130

131131

132132
if __name__ == '__main__':

0 commit comments

Comments
 (0)
0