Skip to content

Commit 9a5e2a0

Browse files
committed
Merge branch 'run-py-shiny-template-tests' of https://github.com/posit-dev/py-shiny into run-py-shiny-template-tests
2 parents 6dc0c9b + 17a2825 commit 9a5e2a0

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/pytest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
if: matrix.python-version != '3.9'
204204
# Scikit-learn 1.7.0+ requires Python 3.10+
205205
run: |
206-
make install-py-shiny-templates-deps
206+
make ci-install-py-shiny-templates-deps
207207
208208
- name: Run example app tests
209209
timeout-minutes: 60

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,15 +220,15 @@ ci-install-wheel: dist FORCE
220220
uv pip install dist/shiny*.whl
221221

222222
install-deps: FORCE ## install dependencies
223-
uv pip install -e ".[dev,test]" --upgrade
223+
pip install -e ".[dev,test]" --upgrade
224224
ci-install-deps: FORCE
225225
uv pip install -e ".[dev,test]"
226-
install-py-shiny-templates-deps: FORCE
226+
ci-install-py-shiny-templates-deps: FORCE
227227
uv pip install -r py-shiny-templates/requirements.txt
228228

229229
install-docs: FORCE
230-
uv pip install -e ".[dev,test,doc]"
231-
uv pip install https://github.com/posit-dev/py-shinylive/tarball/main
230+
pip install -e ".[dev,test,doc]"
231+
pip install https://github.com/posit-dev/py-shinylive/tarball/main
232232
ci-install-docs: FORCE
233233
uv pip install -e ".[dev,test,doc]" \
234234
"shinylive @ git+https://github.com/posit-dev/py-shinylive.git"

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ test = [
9191
"dask[dataframe]",
9292
"pyarrow",
9393
"pyarrow-stubs",
94-
9594
]
9695
dev = [
9796
"black>=24.0",

tests/playwright/shiny/components/data_frame/edit/app.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,6 @@ def df_styles_fn(data: pd.DataFrame) -> list[StyleInfo]:
263263

264264
@render_widget
265265
def country_detail_pop(): # pyright: ignore[reportUnknownParameterType]
266-
267266
import plotly.express as px
268267

269268
# Create the figure explicitly

0 commit comments

Comments
 (0)