Add retry step to failed Conda tests (#15884)

pull/15896/head
Glenn Jocher 6 months ago committed by GitHub
parent a222b94897
commit 12d943315c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 10
      .github/workflows/ci.yaml

@ -329,9 +329,13 @@ jobs:
results = model.export(format='onnx', imgsz=160)
"
- name: PyTest
run: |
git clone https://github.com/ultralytics/ultralytics
pytest ultralytics/tests
uses: nick-fields/retry@v2
with:
timeout_minutes: 60
max_attempts: 3
command: |
git clone https://github.com/ultralytics/ultralytics
pytest ultralytics/tests
Summary:
runs-on: ubuntu-latest

Loading…
Cancel
Save