Skip to content

Commit 4ff154a

Browse files
committed
ignore false-positive warning
1 parent fd89a2c commit 4ff154a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/playwright/examples/example_apps.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ def get_apps(path: str) -> typing.List[str]:
9393
"RuntimeWarning: invalid value encountered in dot", # some groups didn't have enough data points to create a meaningful line
9494
"DatetimeIndex.format is deprecated and will be removed in a future version. Convert using index.astype(str) or index.map(formatter) instead.", # cufflinks package is using this method
9595
"Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`", # cufflinks package is using this method
96+
# ignore known false-positive warning https://github.com/posit-dev/py-shiny/issues/1704
97+
"UserWarning: More column widths than children at breakpoint",
9698
]
9799
app_allow_js_errors: typing.Dict[str, typing.List[str]] = {
98100
"examples/brownian": ["Failed to acquire camera feed:"],

0 commit comments

Comments
 (0)