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.analysis.typeCheckingMode": "standard",
"python.terminal.activateEnvironment": true, "python.terminal.activateEnvironment": true,
"python.testing.pytestArgs": [ "python.testing.pytestArgs": [
"tests",
"-n", "-n",
"auto", "auto",
"--retries=2", "--retries=3",
"--xvfb"
], ],
"python.testing.pytestEnabled": true, "python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false "python.testing.unittestEnabled": false

View File

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