From c4883ef22e72adc76018635faa6b60d6bac815bf Mon Sep 17 00:00:00 2001 From: Ida Date: Wed, 20 May 2026 12:15:53 +0200 Subject: [PATCH] fix: again test job in deployment file --- .forgejo/workflows/deploy.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 512a2e37..af9ec8cd 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -5,19 +5,17 @@ on: - main jobs: - test: +test: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Dependencies installieren - run: | - python3 -m venv .venv - .venv/bin/pip install -r requirements.txt --no-cache-dir + run: pip3 install -r requirements.txt --no-cache-dir - name: Tests ausführen - run: .venv/bin/pytest tests/ -v + run: pytest tests/ -v deploy: runs-on: ubuntu-latest