From 9e7240fe430658612eec19b449dddb0633c9533a Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 8 Jul 2025 14:23:53 +0200 Subject: [PATCH] Update .gitea/workflows/test.yml --- .gitea/workflows/test.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) 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: |