We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02ac1ce commit 75775feCopy full SHA for 75775fe
2 files changed
src/py/pyproject.toml
@@ -104,7 +104,7 @@ log_cli = false
104
# name = cmd
105
106
[tool.poe.tasks.test]
107
-cmd = "pytest --timeout=90 --log-level=1 -W error -n auto -v -rfE --capture=fd"
+cmd = "pytest --timeout=20 --log-level=1 -W error -n auto -v -rfE --capture=fd"
108
help = "Run all tests quickly"
109
110
[tool.poe.tasks.debug-test]
src/py/tests/test_kaleido.py
@@ -436,7 +436,7 @@ async def test_unreasonable_timeout(simple_figure_with_bytes):
436
opts = simple_figure_with_bytes["opts"]
437
438
# Use an infinitely small timeout
439
- async with Kaleido(timeout=0.0001) as k:
+ async with Kaleido(timeout=0.005) as k:
440
with pytest.raises((asyncio.TimeoutError, TimeoutError)):
441
await k.calc_fig(fig, opts=opts)
442
0 commit comments