diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 25b8bdd0..6e1ea984 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -41,20 +41,14 @@ jobs: --alluredir=allure-results || true allure generate allure-results -o ci-reports/allure --clean || true - - name: Install pytest-md-report + - name: Generate Markdown report run: | 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: | + pip install pytest pytest-md-report mkdir -p ci-reports/markdown - export PATH="$HOME/.pixi/bin:$PATH" - pixi run pytest --md-report=ci-reports/markdown/static-report.md + pytest --md-report=ci-reports/markdown/static-report.md - name: Commit and push markdown report to Gitea run: |