Skip to content

Commit ec4e7a8

Browse files
authored
Fix failing deploy tests (#925)
1 parent 08091aa commit ec4e7a8

File tree

7 files changed

+11
-13
lines changed

7 files changed

+11
-13
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pandas
22
plotly
33
git+https://github.com/posit-dev/py-shiny.git#egg=shiny
4-
git+https://github.com/posit-dev/py-htmltools#egg=htmltools
5-
git+https://github.com/posit-dev/py-shinywidgets#egg=shinywidgets
4+
git+https://github.com/posit-dev/py-htmltools.git#egg=htmltools
5+
git+https://github.com/posit-dev/py-shinywidgets.git#egg=shinywidgets
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
git+https://github.com/posit-dev/py-shiny.git#egg=shiny
2-
git+https://github.com/posit-dev/py-htmltools#egg=htmltools
2+
git+https://github.com/posit-dev/py-htmltools.git#egg=htmltools

tests/playwright/deploys/apps/shiny-express-page-default/app.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
background-color: #00000022}
88
"""
99
)
10-
11-
1210
with layout.div(id="shell"):
1311
with layout.row():
1412
with layout.column(width=8):
@@ -30,20 +28,20 @@
3028

3129
with layout.column(width=6):
3230
# check height is below 300px - bounding box
33-
with layout.navset_card_tab(id="express_navset_card_tab"):
34-
with layout.nav(title="Two"):
31+
with layout.navset_card(id="express_navset_card_tab", type="tab"):
32+
with layout.nav_panel(title="Two"):
3533
...
3634

3735

3836
with layout.column(width=6):
3937
with layout.row():
40-
with layout.navset_tab(id="express_navset_tab"):
38+
with layout.navset(id="express_navset_tab", type="tab"):
4139
for fn_txt, fn in [
4240
("pre", layout.pre),
4341
("div", layout.div),
4442
("span", layout.span),
4543
]:
46-
with layout.nav(title=fn_txt):
44+
with layout.nav_panel(title=fn_txt):
4745
for i in range(3):
4846
with fn():
4947
ui.HTML(f"{fn_txt} {i}")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
git+https://github.com/posit-dev/py-shiny.git#egg=shiny
2-
git+https://github.com/posit-dev/py-htmltools#egg=htmltools
2+
git+https://github.com/posit-dev/py-htmltools.git#egg=htmltools
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
git+https://github.com/posit-dev/py-shiny.git#egg=shiny
2-
git+https://github.com/posit-dev/py-htmltools#egg=htmltools
2+
git+https://github.com/posit-dev/py-htmltools.git#egg=htmltools
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
git+https://github.com/posit-dev/py-shiny.git#egg=shiny
2-
git+https://github.com/posit-dev/py-htmltools#egg=htmltools
2+
git+https://github.com/posit-dev/py-htmltools.git#egg=htmltools
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
git+https://github.com/posit-dev/py-shiny.git#egg=shiny
2-
git+https://github.com/posit-dev/py-htmltools#egg=htmltools
2+
git+https://github.com/posit-dev/py-htmltools.git#egg=htmltools

0 commit comments

Comments
 (0)