Skip to content

Commit

Permalink
Added "--reruns-delay 10" in the examples CI (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nusnus authored Sep 9, 2024
1 parent 159ca66 commit 0dac54d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
working-directory: examples/myworker
timeout-minutes: 10
run: |
pytest -xsv tests --reruns 3 --rerun-except AssertionError
pytest -xsv tests --reruns 3 --reruns-delay 10 --rerun-except AssertionError
range:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
working-directory: examples/range
timeout-minutes: 30
run: |
pytest -xsv tests --reruns 3 --rerun-except AssertionError
pytest -xsv tests --reruns 3 --reruns-delay 10 --rerun-except AssertionError
rabbitmq_management:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
working-directory: examples/rabbitmq_management
timeout-minutes: 10
run: |
pytest -xsv tests --reruns 3 --rerun-except AssertionError
pytest -xsv tests --reruns 3 --reruns-delay 10 --rerun-except AssertionError
django:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
timeout-minutes: 10
run: |
export DJANGO_SETTINGS_MODULE=proj.settings
pytest -xsv tests --reruns 3 --rerun-except AssertionError
pytest -xsv tests --reruns 3 --reruns-delay 10 --rerun-except AssertionError
myutils:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
working-directory: examples/myutils
timeout-minutes: 10
run: |
pytest -xsv tests --reruns 3 --rerun-except AssertionError
pytest -xsv tests --reruns 3 --reruns-delay 10 --rerun-except AssertionError
worker_pool:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
working-directory: examples/worker_pool
timeout-minutes: 10
run: |
pytest -xsv tests --reruns 3 --rerun-except AssertionError
pytest -xsv tests --reruns 3 --reruns-delay 10 --rerun-except AssertionError
hybrid_setup:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
working-directory: examples/hybrid_setup
timeout-minutes: 10
run: |
pytest -xsv tests --reruns 5 --rerun-except AssertionError
pytest -xsv tests --reruns 5 --reruns-delay 10 --rerun-except AssertionError
vhost:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -331,4 +331,4 @@ jobs:
working-directory: examples/vhost
timeout-minutes: 10
run: |
pytest -xsv tests --reruns 3 --rerun-except AssertionError
pytest -xsv tests --reruns 3 --reruns-delay 10 --rerun-except AssertionError

0 comments on commit 0dac54d

Please sign in to comment.