From c6ceb4f71a1691d7e9bb757b05e2dd398fa90f52 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Fri, 8 Nov 2024 10:13:36 +0000 Subject: [PATCH] fix alpine: install curl and don't create a venv --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10965e132..2c04a63c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: