Skip to content

Commit

Permalink
introduce retry action
Browse files Browse the repository at this point in the history
  • Loading branch information
Konboi committed Sep 12, 2023
1 parent e768a3f commit b87d864
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r test-requirements.txt
uses: nick-fields/retry@v2
with:
max_attempts: 3
retry_on: error
command: python -m pip install --upgrade pip && pip install -r test-requirements.txt
working-directory: ./e2e
- name: Preapre tests
run: |
Expand Down

0 comments on commit b87d864

Please sign in to comment.