Skip to content

Commit

Permalink
fix alpine: install curl and don't create a venv
Browse files Browse the repository at this point in the history
  • Loading branch information
graingert committed Nov 8, 2024
1 parent 70b2168 commit c6ceb4f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,9 @@ jobs:
# can't use setup-python because that python doesn't seem to work;
# `python3-dev` (rather than `python:alpine`) for some ctypes reason,
# `nodejs` for pyright (`node-env` pulls in nodejs but that takes a while and can time out the test).
run: apk update && apk add python3-dev bash nodejs
- name: Enter virtual environment
run: python -m venv .venv
run: apk update && apk add python3-dev bash nodejs curl
- name: Run tests
run: source .venv/bin/activate && ./ci.sh
run: ./ci.sh
- if: always()
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit c6ceb4f

Please sign in to comment.