From 5a709b1e0b999bb4325a591669d21c17a9781933 Mon Sep 17 00:00:00 2001 From: Firq <firelp42@gmail.com> Date: Sat, 5 Apr 2025 20:08:28 +0200 Subject: [PATCH] venv fix? --- .forgejo/workflows/check.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index 8a91485..691ff69 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -45,7 +45,9 @@ jobs: - name: Install packages run: | python --version - python -m venv .venv && source .venv/bin/activate + python -m venv .venv + source .venv/bin/activate + echo $VIRTUAL_ENV pip install -e .[testing] --disable-pip-version-check --no-cache-dir -q python -m pip list --format=columns --disable-pip-version-check - name: Run pytest