Update .gitea/workflows/test.yml
Run Pytest with Allure and Coverage Reports / tests (push) Successful in 56s
Run Pytest with Allure and Coverage Reports / deploy (push) Has been skipped

This commit is contained in:
2025-07-09 16:54:10 +02:00
parent 900a323e6d
commit c8ba791acc
+10
View File
@@ -68,6 +68,16 @@ jobs:
python generate_test_summary.py # (laisse ton script custom)
- name: Run pytest with JSON report
run: |
export PATH="$HOME/.pixi/bin:$PATH"
source "$VIRTUAL_ENV/bin/activate"
mkdir -p ci-reports
pixi run pytest tests \
--json-report \
--json-report-file=ci-reports/pytest-report.json || true
- name: Commit and push reports in markdown format
run: |