Build Sphinx documentation, even if some testcases have failed.

This commit is contained in:
Patrick Lehmann
2025-07-15 22:35:13 +02:00
parent f3e2e42ae3
commit 962827936c
2 changed files with 3 additions and 2 deletions

View File

@@ -291,6 +291,7 @@ jobs:
- PublishTestResults - PublishTestResults
- PublishCoverageResults - PublishCoverageResults
# - VerifyDocs # - VerifyDocs
if: success() || failure()
with: with:
python_version: ${{ needs.UnitTestingParams.outputs.python_version }} python_version: ${{ needs.UnitTestingParams.outputs.python_version }}
coverage_report_json_directory: ${{ needs.ConfigParams.outputs.coverage_report_json_directory }} coverage_report_json_directory: ${{ needs.ConfigParams.outputs.coverage_report_json_directory }}
@@ -305,7 +306,7 @@ jobs:
- UnitTestingParams - UnitTestingParams
- PublishCoverageResults - PublishCoverageResults
- PublishTestResults - PublishTestResults
if: inputs.cleanup == 'true' if: ( success() || failure() ) && inputs.cleanup == 'true'
with: with:
sqlite_coverage_artifacts_prefix: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }}- sqlite_coverage_artifacts_prefix: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }}-
xml_unittest_artifacts_prefix: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}- xml_unittest_artifacts_prefix: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}-

View File

@@ -10,4 +10,4 @@ pytest-cov ~= 6.2
# Static Type Checking # Static Type Checking
mypy ~= 1.16 mypy ~= 1.16
typing_extensions ~= 4.14 typing_extensions ~= 4.14
lxml ~= 5.4 lxml ~= 6.0