Skip to content

Commit 1205dff

Browse files
committed
Add 'warn(' to allowed external errors list
Expanded the app_allow_external_errors list to include entries containing 'warn('. This helps filter out additional warning messages during test runs.
1 parent f31d99c commit 1205dff

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/playwright/examples/example_apps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ def get_apps(path: str) -> typing.List[str]:
9292
"pd.option_context('mode.use_inf_as_na", # continutation of line above,
9393
"RuntimeWarning: invalid value encountered in dot", # some groups didn't have enough data points to create a meaningful line
9494
"UserWarning: More column widths than children at breakpoint",
95+
"warn(", # Airmass example has this warning without any message
9596
]
9697
app_allow_js_errors: typing.Dict[str, typing.List[str]] = {
9798
"examples/brownian": ["Failed to acquire camera feed:"],

0 commit comments

Comments
 (0)