Skip to content

Commit

Permalink
Allow for external errors from shinywidgets in couple apps
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Oct 30, 2023
1 parent ab36b8b commit 772b114
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/e2e/examples/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ def get_apps(path: str) -> typing.List[str]:
"RuntimeWarning: divide by zero encountered",
"UserWarning: This figure includes Axes that are not compatible with tight_layout",
],
"airmass": [
# shinywidgets.register_widget() uses `session` when registering widget
"ShinyDeprecationWarning: `session=` is deprecated",
"session_type_warning()", # continutation of line above
],
"brownian": [
# shinywidgets.register_widget() uses `session` when registering widget
"ShinyDeprecationWarning: `session=` is deprecated",
"session_type_warning()", # continutation of line above
],
}
app_allow_external_errors: typing.List[str] = [
# plotnine: https://github.com/has2k1/plotnine/issues/713
Expand Down

0 comments on commit 772b114

Please sign in to comment.