From 28733282ab5b88afa9cfcc19c22d664bf6cfbc20 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 20 Mar 2021 23:24:55 +0300 Subject: [PATCH] CI reruns --- .github/workflows/python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 9d695ed..a4dba35 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -26,8 +26,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install flake8 pytest + python -m pip install flake8 pytest pytest-rerunfailures if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: | - pytest + pytest --reruns 3 --reruns-delay 5