From 06f6b867bec5d0b03fac2ea4a58f07b602f97425 Mon Sep 17 00:00:00 2001 From: Claudia Date: Mon, 9 Feb 2026 11:39:07 +0100 Subject: [PATCH] ci: use host execution mode --- .forgejo/workflows/test.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 3916beb..4d3c507 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -4,21 +4,16 @@ on: [push, pull_request] jobs: test: runs-on: ubuntu-latest - container: - image: python:3.11-slim steps: - - name: Install git - run: apt-get update && apt-get install -y git - - uses: https://github.com/actions/checkout@v4 - name: Install dependencies run: | - pip install -e . - pip install pytest + python3 -m pip install -e . --break-system-packages + python3 -m pip install pytest --break-system-packages - name: Run tests - run: python -m pytest tests/ -v --tb=short + run: python3 -m pytest tests/ -v --tb=short - name: Smoke test CLI run: |