venv fix?

This commit is contained in:
Firq 2025-04-05 20:08:28 +02:00
parent 7e73ff0b9e
commit 5a709b1e0b
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20

View file

@ -45,7 +45,9 @@ jobs:
- name: Install packages - name: Install packages
run: | run: |
python --version 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 pip install -e .[testing] --disable-pip-version-check --no-cache-dir -q
python -m pip list --format=columns --disable-pip-version-check python -m pip list --format=columns --disable-pip-version-check
- name: Run pytest - name: Run pytest