From 1d37f283e978d815692dc38da3f2ee2c50105ead Mon Sep 17 00:00:00 2001 From: Tom Gross Date: Wed, 28 Feb 2024 20:45:59 +0100 Subject: [PATCH] Increase delay of running flaky tests --- .github/workflows/pcloud-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pcloud-test.yml b/.github/workflows/pcloud-test.yml index 9420468..8bc58af 100644 --- a/.github/workflows/pcloud-test.yml +++ b/.github/workflows/pcloud-test.yml @@ -40,7 +40,7 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | - pytest src --cov=src/pcloud --cov-report=xml --cov-branch --cov-config=.coveragerc --capture=no -v --timeout=600 --reruns 3 --reruns-delay 1 + pytest src --cov=src/pcloud --cov-report=xml --cov-branch --cov-config=.coveragerc --capture=no -v --timeout=600 --reruns 3 --reruns-delay 3 env: PCLOUD_USERNAME: ${{ secrets.PCLOUD_USERNAME }} PCLOUD_PASSWORD: ${{ secrets.PCLOUD_PASSWORD }}