From 8958ac8dab99c977bd3f9a5c6f1dc432c3436133 Mon Sep 17 00:00:00 2001 From: russell Date: Mon, 22 Jun 2026 09:38:43 -0400 Subject: [PATCH] ci: pip install six + pytest before make test --- .forgejo/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 72e5114..cff51de 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -9,7 +9,10 @@ jobs: steps: - name: checkout uses: actions/checkout@v4 - - name: setup python venv prereq - run: apt-get update -qq && apt-get install -y -qq python3-venv + - name: install runtime deps + run: | + apt-get update -qq + apt-get install -y -qq python3-venv + pip install six pytest - name: test run: make test