Skip to content

Commit 90836bd

Browse files
authored
simplify marimo in downstream_tests.yml (#1214)
1 parent 05f9e06 commit 90836bd

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/downstream_tests.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -87,21 +87,16 @@ jobs:
8787
- name: show-deps
8888
run: uv pip freeze
8989
- name: Create assets directory, copy over index.html
90+
continue-on-error: true
9091
run: |
9192
mkdir -p marimo/marimo/_static/assets
9293
cp marimo/frontend/index.html marimo/marimo/_static/index.html
9394
cp marimo/frontend/public/favicon.ico marimo/marimo/_static/favicon.ico
94-
- name: Run tests with minimal dependencies
95-
if: ${{ matrix.dependencies == 'core' }}
96-
run: |
97-
cd marimo
98-
hatch run +py=${{ matrix.python-version }} test:test -v tests/ -k "not test_cli"
99-
timeout-minutes: 15
100-
- name: Run tests with optional dependencies
95+
- name: Run tests with full dependencies
10196
if: ${{ matrix.dependencies == 'core,optional' }}
10297
run: |
10398
cd marimo
104-
hatch run +py=${{ matrix.python-version }} test-optional:test -v tests/ -k "not test_cli"
99+
hatch run +py=${{ matrix.python-version }} test-optional:test-narwhals
105100
timeout-minutes: 15
106101
- name: Run typechecks
107102
run: |

0 commit comments

Comments
 (0)