From 8913e63997e8c20929f6f05eb592df824d78045b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=A4der?= Date: Fri, 10 Oct 2025 15:34:31 +0200 Subject: [PATCH] .gitea/workflows/UnitTests.yaml aktualisiert --- .gitea/workflows/UnitTests.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/UnitTests.yaml b/.gitea/workflows/UnitTests.yaml index c7529b31..241dc572 100644 --- a/.gitea/workflows/UnitTests.yaml +++ b/.gitea/workflows/UnitTests.yaml @@ -17,6 +17,8 @@ jobs: - name: Install dependencies if requirements.txt exists run: | + python3 -m venv venv + source venv/bin/activate if [ -f requirements.txt ]; then pip install -r requirements.txt else @@ -25,4 +27,5 @@ jobs: - name: Run unit tests run: | + source venv/bin/activate python3 -m unittest tests.py