use 3 retries

This commit is contained in:
ThePhaseless 2025-02-17 21:55:02 +00:00
parent a3cf96bcb5
commit 4fedb90cf5
2 changed files with 3 additions and 3 deletions

View File

@ -13,10 +13,10 @@
"python.analysis.typeCheckingMode": "standard",
"python.terminal.activateEnvironment": true,
"python.testing.pytestArgs": [
"tests",
"-n",
"auto",
"--retries=2",
"--xvfb"
"--retries=3",
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false

View File

@ -1,3 +1,3 @@
#!/bin/sh
uv run pytest --retries 2 -n auto
uv run pytest --retries 3 -n auto