From 4fedb90cf5f6d7de9e17f4a92e406e30d0f04a4a Mon Sep 17 00:00:00 2001 From: ThePhaseless Date: Mon, 17 Feb 2025 21:55:02 +0000 Subject: [PATCH] use 3 retries --- .vscode/settings.json | 4 ++-- test.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 4c95a13..45cd1ab 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -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 diff --git a/test.sh b/test.sh index bd34262..eae195f 100755 --- a/test.sh +++ b/test.sh @@ -1,3 +1,3 @@ #!/bin/sh -uv run pytest --retries 2 -n auto \ No newline at end of file +uv run pytest --retries 3 -n auto \ No newline at end of file