Skip to content

Commit cdd438d

Browse files
committed
change timeout
1 parent d25a234 commit cdd438d

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/test_be.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ jobs:
8989
- name: Test with minimal dependencies
9090
if: ${{ matrix.dependencies == 'core' }}
9191
run: |
92-
hatch run +py=${{ matrix.python-version }} test:test -v tests/ -k "not test_cli"
92+
hatch run +py=${{ matrix.python-version }} test:test -v tests/ -k "not test_cli" --durations=10
9393
9494
# Test with optional dependencies
9595
- name: Test with optional dependencies
9696
if: ${{ matrix.dependencies == 'core,optional' }}
9797
run: |
98-
hatch run +py=${{ matrix.python-version }} test-optional:test -v tests/ -k "not test_cli"
98+
hatch run +py=${{ matrix.python-version }} test-optional:test -v tests/ -k "not test_cli" --durations=10

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ minversion = "6.0"
398398
addopts = "-ra -q -v --ignore tests/_cli/ipynb_data --ignore tests/_ast/codegen_data --ignore tests/_ast/app_data"
399399
testpaths = ["tests"]
400400
asyncio_mode = "auto"
401-
timeout = 30 # seconds, per test
401+
timeout = 30 # seconds, per test
402402

403403
[tool.coverage.run]
404404
omit = ["marimo/_tutorials/*"]

tests/_server/export/test_exporter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def __():
9191

9292
# ruff: noqa: B018
9393
@pytest.mark.skipif(not HAS_DEPS, reason="optional dependencies not installed")
94+
@pytest.mark.timeout(50)
9495
def test_export_ipynb_with_outputs():
9596
app = App()
9697

0 commit comments

Comments
 (0)