From d015b14a23a69fb9a2cceba6d9f3abc2224213c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20M=C3=BCller?= Date: Fri, 10 Jan 2025 11:30:49 +0100 Subject: [PATCH] Remove rerun workarounds We have switched the CDN to a more reliable provider. don't want to see reruns there anymore. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ba21617b..85960c73 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -402,7 +402,7 @@ jobs: done - name: Run the tests for docker - run: python3 -m tox -e ${{ matrix.toxenv }} -- -n 3 --reruns 3 --durations=25 --durations-min=600.0 --pytest-container-log-level=debug + run: python3 -m tox -e ${{ matrix.toxenv }} -- -n 3 --durations=25 --durations-min=600.0 --pytest-container-log-level=debug env: CONTAINER_RUNTIME: docker OS_VERSION: ${{ matrix.os_version }} @@ -411,7 +411,7 @@ jobs: - name: Run tests as root for podman run: | - sudo --preserve-env=CONTAINER_RUNTIME,OS_VERSION,TARGET,PULL_ALWAYS -H $(type -p python3) -m tox -e ${{ matrix.toxenv }} -- -n 3 --reruns 3 --durations=25 --durations-min=600.0 --pytest-container-log-level=debug + sudo --preserve-env=CONTAINER_RUNTIME,OS_VERSION,TARGET,PULL_ALWAYS -H $(type -p python3) -m tox -e ${{ matrix.toxenv }} -- -n 3 --durations=25 --durations-min=600.0 --pytest-container-log-level=debug env: CONTAINER_RUNTIME: podman OS_VERSION: ${{ matrix.os_version }}