Skip to content

Commit

Permalink
ci: retry Pyodide tests
Browse files Browse the repository at this point in the history
This is to get around a curious issue that isn't resolved by dependency
locking. The flakey error is:

`ImportError: cannot import name 'Any' from 'typing_extensions'`
  • Loading branch information
tombh committed Jul 30, 2023
1 parent acc239a commit 7fe0f7c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,13 @@ jobs:
sudo apt install chromium-browser chromium-chromedriver
poetry install --with pyodide
- name: Run Testsuite
run: |
source $VENV
poe test-pyodide
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: |
source $VENV
poe test-pyodide
lint:
needs: pre_job
Expand Down

0 comments on commit 7fe0f7c

Please sign in to comment.