diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 9965794f..a35fc6a7 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -43,8 +43,12 @@ jobs: - name: Install pytest-md-report run: | - export PATH="$HOME/.pixi/bin:$PATH" + python3 -m venv venv + source venv/bin/activate + pip install --upgrade pip pip install pytest-md-report + source venv/bin/activate && pytest --md-report=ci-reports/markdown/static-report.md || true + - name: Generate Markdown report run: |