From 7346f6e20387da5d0d000c2f96033b5622f93055 Mon Sep 17 00:00:00 2001 From: russell Date: Mon, 22 Jun 2026 09:40:25 -0400 Subject: [PATCH] ci: install requirements.txt into venv before test --- .forgejo/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index cff51de..9220486 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -13,6 +13,9 @@ jobs: run: | apt-get update -qq apt-get install -y -qq python3-venv - pip install six pytest + - name: prime venv with package + test deps + run: | + make env + env/bin/pip install -r requirements.txt - name: test run: make test