Update .gitea/workflows/test.yml
Run Pytest with Allure and Coverage Reports / tests (push) Failing after 42s
Run Pytest with Allure and Coverage Reports / deploy (push) Has been skipped

This commit is contained in:
2025-07-09 16:08:17 +02:00
parent 7a1b04a17d
commit bdbbc60ed5
+9 -6
View File
@@ -48,12 +48,15 @@ jobs:
mkdir -p ci-reports/{allure,coverage,markdown}
pixi run pytest --cov=slic \
--cov-report=xml:ci-reports/coverage/coverage.xml \
--cov-report=html:ci-reports/coverage/ \
--alluredir=allure-results \
--md-report \
--md-report-output=ci-reports/markdown/test-full.md || true # 👈 ligne ajoutée
pixi run pytest . \
--cov=slic \
--cov-report=xml:ci-reports/coverage/coverage.xml \
--cov-report=html:ci-reports/coverage/ \
--alluredir=allure-results \
--md-report \
--md-report-flavor gfm \
--md-report-output=ci-reports/markdown/test-full.md || true
allure generate allure-results -o ci-reports/allure --clean || true
coverage report --format=markdown > ci-reports/markdown/coverage-summary.md