Fixed typos.

This commit is contained in:
Patrick Lehmann
2025-04-21 13:09:12 +02:00
parent f10daa2e2c
commit aaf283515b
5 changed files with 7 additions and 7 deletions

View File

@@ -180,7 +180,7 @@ jobs:
commands: | commands: |
${{ needs.ConfigParams.outputs.mypy_prepare_command }} ${{ needs.ConfigParams.outputs.mypy_prepare_command }}
mypy --html-report report/typing -p ${{ needs.ConfigParams.outputs.package_fullname }} mypy --html-report report/typing -p ${{ needs.ConfigParams.outputs.package_fullname }}
html_report: 'report/typing' html_report: 'report/typing'
html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }} html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}
DocCoverage: DocCoverage:

View File

@@ -131,7 +131,7 @@ jobs:
if: inputs.pipeline-delay >= 0 if: inputs.pipeline-delay >= 0
run: | run: |
sleep ${{ inputs.pipeline-delay }} sleep ${{ inputs.pipeline-delay }}
- name: Generate 'params' and 'python_jobs' - name: Generate 'params' and 'python_jobs'
id: params id: params
shell: python shell: python

View File

@@ -69,8 +69,8 @@ jobs:
python_version: ${{ needs.UnitTestingParams.outputs.python_version }} python_version: ${{ needs.UnitTestingParams.outputs.python_version }}
commands: | commands: |
${{ needs.ConfigParams.outputs.mypy_prepare_command }} ${{ needs.ConfigParams.outputs.mypy_prepare_command }}
mypy --html-report htmlmypy -p ${{ needs.ConfigParams.outputs.package_fullname }} mypy --html-report report/typing -p ${{ needs.ConfigParams.outputs.package_fullname }}
html_report: 'htmlmypy' html_report: 'report/typing'
html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }} html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}
DocCoverage: DocCoverage:
@@ -80,7 +80,7 @@ jobs:
- UnitTestingParams - UnitTestingParams
with: with:
python_version: ${{ needs.UnitTestingParams.outputs.python_version }} python_version: ${{ needs.UnitTestingParams.outputs.python_version }}
directory : ${{ needs.ConfigParams.outputs.package_directors }} directory : ${{ needs.ConfigParams.outputs.package_directory }}
# fail_below: 70 # fail_below: 70
Package: Package:

View File

@@ -16,4 +16,4 @@ autoapi >= 2.0.1
sphinx_design ~= 0.6.1 sphinx_design ~= 0.6.1
sphinx-copybutton >= 0.5.2 sphinx-copybutton >= 0.5.2
sphinx_autodoc_typehints ~= 3.1 sphinx_autodoc_typehints ~= 3.1
sphinx_reports ~= 0.7 sphinx_reports ~= 0.9

View File

@@ -1,6 +1,6 @@
[build-system] [build-system]
requires = [ requires = [
"setuptools ~= 78.1", "setuptools ~= 79.0",
"wheel ~= 0.45", "wheel ~= 0.45",
"pyTooling ~= 8.4" "pyTooling ~= 8.4"
] ]