File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -398,7 +398,7 @@ minversion = "6.0"
398398addopts = " -ra -q -v --ignore tests/_cli/ipynb_data --ignore tests/_ast/codegen_data --ignore tests/_ast/app_data"
399399testpaths = [" tests" ]
400400asyncio_mode = " auto"
401- timeout = 30 # seconds, per test
401+ timeout = 30 # seconds, per test
402402
403403[tool .coverage .run ]
404404omit = [" marimo/_tutorials/*" ]
Original file line number Diff line number Diff 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 )
9495def test_export_ipynb_with_outputs ():
9596 app = App ()
9697
You can’t perform that action at this time.
0 commit comments