mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 11:06:56 +08:00
Build Sphinx documentation, even if some testcases have failed.
This commit is contained in:
3
.github/workflows/CompletePipeline.yml
vendored
3
.github/workflows/CompletePipeline.yml
vendored
@@ -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 }}-
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user