mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-17 13:36:56 +08:00
Compare commits
77 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ce552b2b4 | ||
|
|
370c306306 | ||
|
|
c0f5c9f6e1 | ||
|
|
9581b8f22f | ||
|
|
1ac31243d2 | ||
|
|
cbd7840707 | ||
|
|
69f521d740 | ||
|
|
09c9ae6ad1 | ||
|
|
8274b22570 | ||
|
|
c76fed150e | ||
|
|
d650bf7dcf | ||
|
|
b9303e750a | ||
|
|
7b43b4aa58 | ||
|
|
d0eae08e12 | ||
|
|
aefbd1cbba | ||
|
|
c8fea4502c | ||
|
|
b145ed32bd | ||
|
|
f7353134cb | ||
|
|
8f604de141 | ||
|
|
0ba5880dd0 | ||
|
|
14db3bef61 | ||
|
|
be972d3c0e | ||
|
|
0cf94920f2 | ||
|
|
878031f339 | ||
|
|
ce8dc41774 | ||
|
|
1992fd31c6 | ||
|
|
2658aeb896 | ||
|
|
37a73ff495 | ||
|
|
497307f0e4 | ||
|
|
c58169077d | ||
|
|
e5f3177616 | ||
|
|
d4092fb610 | ||
|
|
29a6c4460f | ||
|
|
d85e2ee82a | ||
|
|
254c408a40 | ||
|
|
3574beff39 | ||
|
|
4b0576fe8f | ||
|
|
6fb3389c4f | ||
|
|
b1eff9ce92 | ||
|
|
13530435df | ||
|
|
f0d8a24973 | ||
|
|
a1509493ae | ||
|
|
1c22a8805e | ||
|
|
c55ff4d83f | ||
|
|
a2f2a6c0d4 | ||
|
|
9f4321b7e7 | ||
|
|
0db52d7abc | ||
|
|
5128522ede | ||
|
|
899a5f53bc | ||
|
|
5925101578 | ||
|
|
1b0acf206c | ||
|
|
a0c016bf79 | ||
|
|
40217006fd | ||
|
|
99f30dab53 | ||
|
|
1c42072471 | ||
|
|
74afc5a42a | ||
|
|
2e5a79e0c2 | ||
|
|
db99e35dec | ||
|
|
6cfc6e0f8f | ||
|
|
5adddda1a1 | ||
|
|
91289c4257 | ||
|
|
527e94b245 | ||
|
|
f11c335674 | ||
|
|
5bed864443 | ||
|
|
37ec436eb4 | ||
|
|
6a7a4212c3 | ||
|
|
f5b6f17d4e | ||
|
|
883238547a | ||
|
|
7cd852db58 | ||
|
|
ce0d30fe3f | ||
|
|
34dacf7bcf | ||
|
|
48090e113d | ||
|
|
e082d77e7a | ||
|
|
181035b0ba | ||
|
|
643f95bbb6 | ||
|
|
424b75ca96 | ||
|
|
f0610331b9 |
57
.github/workflows/ApplicationTesting.yml
vendored
57
.github/workflows/ApplicationTesting.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -37,7 +37,7 @@ on:
|
||||
requirements:
|
||||
description: 'Python dependencies to be installed through pip.'
|
||||
required: false
|
||||
default: '-r tests/requirements.txt'
|
||||
default: '-r ./requirements.txt'
|
||||
type: string
|
||||
pacboy:
|
||||
description: 'MSYS2 dependencies to be installed through pacboy (pacman).'
|
||||
@@ -94,6 +94,39 @@ jobs:
|
||||
name: ${{ inputs.wheel }}
|
||||
path: install
|
||||
|
||||
# TODO: extract step to an Action so package, so code can be shared with UnitTesting.yml
|
||||
- name: Compute path to requirements file
|
||||
id: requirements
|
||||
shell: python
|
||||
run: |
|
||||
from os import getenv
|
||||
from pathlib import Path
|
||||
from sys import version
|
||||
|
||||
print(f"Python: {version}")
|
||||
|
||||
requirements = "${{ inputs.requirements }}"
|
||||
if requirements.startswith("-r"):
|
||||
requirements = requirements[2:].lstrip()
|
||||
if requirements.startswith("./"):
|
||||
requirementsFile = Path("${{ inputs.root_directory || '.' }}") / Path("${{ inputs.tests_directory || '.' }}") / Path("${{ inputs.apptest_directory || '.' }}") / Path(requirements[2:])
|
||||
else:
|
||||
requirementsFile = Path(requirements)
|
||||
|
||||
if not requirementsFile.exists():
|
||||
print(f"::error title=FileNotFoundError::{requirementsFile}")
|
||||
exit(1)
|
||||
|
||||
print(f"requirements file: {requirementsFile.as_posix()}")
|
||||
|
||||
# Write requirements path to special file
|
||||
github_output = Path(getenv("GITHUB_OUTPUT"))
|
||||
print(f"GITHUB_OUTPUT: {github_output}")
|
||||
with github_output.open("a+") as f:
|
||||
f.write(f"requirements=-r {requirementsFile.as_posix()}\n")
|
||||
else:
|
||||
print(f"requirements list: {requirements}")
|
||||
|
||||
# TODO: extract step to an Action so package lists are shared with UnitTesting (and GHDL?)
|
||||
- name: Compute pacman/pacboy packages
|
||||
id: pacboy
|
||||
@@ -122,7 +155,7 @@ jobs:
|
||||
|
||||
return requirements
|
||||
|
||||
requirements = "${{ inputs.requirements }}"
|
||||
requirements = "${{ steps.requirements.outputs.requirements }}"
|
||||
if requirements.startswith("-r"):
|
||||
requirementsFile = Path(requirements[2:].lstrip())
|
||||
try:
|
||||
@@ -134,18 +167,19 @@ jobs:
|
||||
dependencies = [req.strip() for req in requirements.split(" ")]
|
||||
|
||||
packages = {
|
||||
"aiohttp": "python-aiohttp:p",
|
||||
"coverage": "python-coverage:p",
|
||||
"docstr_coverage": "python-pyyaml:p python-types-pyyaml:p",
|
||||
"docstr_coverage": "python-pyaml:p python-types-pyyaml:p",
|
||||
"igraph": "igraph:p",
|
||||
"jinja2": "python-markupsafe:p",
|
||||
"lxml": "python-lxml:p",
|
||||
"numpy": "python-numpy:p",
|
||||
"markupsafe": "python-markupsafe:p",
|
||||
"pip": "python-pip:p",
|
||||
"pyyaml": "python-pyyaml:p python-types-pyyaml:p",
|
||||
"pyyaml": "python-pyaml:p python-types-pyyaml:p",
|
||||
"ruamel.yaml": "python-ruamel-yaml:p python-ruamel.yaml.clib:p",
|
||||
"sphinx": "python-markupsafe:p",
|
||||
"tomli": "python-tomli:p",
|
||||
"tomli": "python-tomli:p", # outdated, now part of Python as tomllib
|
||||
"wheel": "python-wheel:p",
|
||||
"pyEDAA.ProjectModel": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
|
||||
"pyEDAA.Reports": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
|
||||
@@ -154,6 +188,7 @@ jobs:
|
||||
subPackages = {
|
||||
"pytooling": {
|
||||
"yaml": "python-ruamel-yaml:p python-ruamel.yaml.clib:p",
|
||||
"pypi": "python-aiohttp:p",
|
||||
}
|
||||
}
|
||||
|
||||
@@ -189,6 +224,8 @@ jobs:
|
||||
with github_output.open("a+") as f:
|
||||
f.write(f"pacboy_packages={' '.join(pacboyPackages)}\n")
|
||||
|
||||
# Python setup
|
||||
|
||||
- name: '🟦 Setup MSYS2 for ${{ matrix.runtime }}'
|
||||
uses: msys2/setup-msys2@v2
|
||||
if: matrix.system == 'msys2'
|
||||
@@ -205,6 +242,8 @@ jobs:
|
||||
with:
|
||||
python-version: ${{ matrix.python }}
|
||||
|
||||
# Python Dependency steps
|
||||
|
||||
- name: 🔧 Install wheel and pip dependencies (native)
|
||||
if: matrix.system != 'msys2'
|
||||
run: |
|
||||
@@ -220,6 +259,8 @@ jobs:
|
||||
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.requirements }}
|
||||
fi
|
||||
|
||||
# TODO: Before scripts?
|
||||
|
||||
- name: 🔧 Install wheel from artifact (Ubuntu/macOS)
|
||||
if: ( matrix.system != 'windows' && matrix.system != 'windows-arm' )
|
||||
run: |
|
||||
@@ -230,6 +271,8 @@ jobs:
|
||||
run: |
|
||||
python -m pip install -v --disable-pip-version-check (Get-Item .\install\*.whl).FullName
|
||||
|
||||
# Run pytests
|
||||
|
||||
- name: ✅ Run application tests (Ubuntu/macOS)
|
||||
if: ( matrix.system != 'windows' && matrix.system != 'windows-arm' )
|
||||
run: |
|
||||
@@ -260,6 +303,8 @@ jobs:
|
||||
python -m pytest -raP $PYTEST_ARGS --color=yes ${{ inputs.tests_directory || '.' }}/${{ inputs.apptest_directory }}
|
||||
}
|
||||
|
||||
# Upload artifacts
|
||||
|
||||
- name: 📤 Upload 'TestReportSummary.xml' artifact
|
||||
if: inputs.apptest_xml_artifact != ''
|
||||
uses: pyTooling/upload-artifact@v6
|
||||
|
||||
2
.github/workflows/ArtifactCleanUp.yml
vendored
2
.github/workflows/ArtifactCleanUp.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
2
.github/workflows/CheckCodeQuality.yml
vendored
2
.github/workflows/CheckCodeQuality.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2025-2025 The pyTooling Authors #
|
||||
# Copyright 2025-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
2
.github/workflows/CheckDocumentation.yml
vendored
2
.github/workflows/CheckDocumentation.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
48
.github/workflows/CompletePipeline.yml
vendored
48
.github/workflows/CompletePipeline.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -136,13 +136,13 @@ on:
|
||||
|
||||
jobs:
|
||||
Prepare:
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r7
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_namespace: ${{ inputs.package_namespace }}
|
||||
package_name: ${{ inputs.package_name }}
|
||||
@@ -154,7 +154,7 @@ jobs:
|
||||
disable_list: ${{ inputs.unittest_disable_list }}
|
||||
|
||||
# AppTestingParams:
|
||||
# uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
# uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
# with:
|
||||
# package_namespace: ${{ inputs.package_namespace }}
|
||||
# package_name: ${{ inputs.package_name }}
|
||||
@@ -166,7 +166,7 @@ jobs:
|
||||
# disable_list: ${{ inputs.apptest_disable_list }}
|
||||
|
||||
InstallParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_namespace: ${{ inputs.package_namespace }}
|
||||
package_name: ${{ inputs.package_name }}
|
||||
@@ -230,7 +230,7 @@ jobs:
|
||||
"""))
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -245,7 +245,7 @@ jobs:
|
||||
coverage_sqlite_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }}
|
||||
|
||||
StaticTypeCheck:
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -259,7 +259,7 @@ jobs:
|
||||
html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}
|
||||
|
||||
CodeQuality:
|
||||
uses: pyTooling/Actions/.github/workflows/CheckCodeQuality.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/CheckCodeQuality.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
with:
|
||||
@@ -270,7 +270,7 @@ jobs:
|
||||
artifact: CodeQuality
|
||||
|
||||
DocCoverage:
|
||||
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
with:
|
||||
@@ -278,7 +278,7 @@ jobs:
|
||||
directory: ${{ needs.UnitTestingParams.outputs.package_directory }}
|
||||
|
||||
Package:
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
with:
|
||||
@@ -286,7 +286,7 @@ jobs:
|
||||
artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}
|
||||
|
||||
Install:
|
||||
uses: pyTooling/Actions/.github/workflows/InstallPackage.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/InstallPackage.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- InstallParams
|
||||
@@ -297,7 +297,7 @@ jobs:
|
||||
package_name: ${{ needs.UnitTestingParams.outputs.package_fullname }}
|
||||
|
||||
# AppTesting:
|
||||
# uses: pyTooling/Actions/.github/workflows/ApplicationTesting.yml@main
|
||||
# uses: pyTooling/Actions/.github/workflows/ApplicationTesting.yml@r7
|
||||
# needs:
|
||||
# - AppTestingParams
|
||||
# - UnitTestingParams
|
||||
@@ -308,7 +308,7 @@ jobs:
|
||||
# apptest_xml_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).apptesting_xml }}
|
||||
|
||||
PublishCoverageResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -330,7 +330,7 @@ jobs:
|
||||
CODACY_TOKEN: ${{ secrets.CODACY_TOKEN }}
|
||||
|
||||
PublishTestResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -346,14 +346,14 @@ jobs:
|
||||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
||||
|
||||
# VerifyDocs:
|
||||
# uses: pyTooling/Actions/.github/workflows/VerifyDocs.yml@main
|
||||
# uses: pyTooling/Actions/.github/workflows/VerifyDocs.yml@r7
|
||||
# needs:
|
||||
# - UnitTestingParams
|
||||
# with:
|
||||
# python_version: ${{ needs.UnitTestingParams.outputs.python_version }}
|
||||
|
||||
Documentation:
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -370,7 +370,7 @@ jobs:
|
||||
latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }}
|
||||
|
||||
IntermediateCleanUp:
|
||||
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- PublishCoverageResults
|
||||
@@ -381,7 +381,7 @@ jobs:
|
||||
xml_unittest_artifacts_prefix: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}-
|
||||
|
||||
PDFDocumentation:
|
||||
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- Documentation
|
||||
@@ -392,7 +392,7 @@ jobs:
|
||||
can-fail: 'true'
|
||||
|
||||
PublishToGitHubPages:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- Documentation
|
||||
@@ -405,7 +405,7 @@ jobs:
|
||||
typing: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}
|
||||
|
||||
TriggerTaggedRelease:
|
||||
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r7
|
||||
needs:
|
||||
- Prepare
|
||||
- UnitTesting
|
||||
@@ -424,7 +424,7 @@ jobs:
|
||||
secrets: inherit
|
||||
|
||||
ReleasePage:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r7
|
||||
needs:
|
||||
- Prepare
|
||||
- UnitTesting
|
||||
@@ -442,7 +442,7 @@ jobs:
|
||||
secrets: inherit
|
||||
|
||||
PublishOnPyPI:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r7
|
||||
needs:
|
||||
- Prepare
|
||||
- UnitTestingParams
|
||||
@@ -457,7 +457,7 @@ jobs:
|
||||
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
||||
|
||||
ArtifactCleanUp:
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- UnitTesting
|
||||
|
||||
12
.github/workflows/ExtractConfiguration.yml
vendored
12
.github/workflows/ExtractConfiguration.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -89,9 +89,9 @@ jobs:
|
||||
with:
|
||||
python-version: ${{ inputs.python_version }}
|
||||
|
||||
- name: 🔧 Install wheel,tomli and pip dependencies (native)
|
||||
- name: 🔧 Install wheel and pip dependencies (native)
|
||||
run: |
|
||||
python -m pip install --disable-pip-version-check -U wheel tomli
|
||||
python -m pip install --disable-pip-version-check -U wheel
|
||||
|
||||
- name: 🔁 Extract configurations from pyproject.toml
|
||||
id: getVariables
|
||||
@@ -105,7 +105,7 @@ jobs:
|
||||
|
||||
print(f"Python: {version} (of default installation)")
|
||||
|
||||
from tomli import load as tomli_load
|
||||
from tomllib import load as toml_load
|
||||
|
||||
unittestXMLFile = Path("./unittest.xml")
|
||||
coverageHTMLDirectory = Path("htmlcov")
|
||||
@@ -121,7 +121,7 @@ jobs:
|
||||
pyProjectFile = Path("pyproject.toml")
|
||||
if pyProjectFile.exists():
|
||||
with pyProjectFile.open("rb") as file:
|
||||
pyProjectSettings = tomli_load(file)
|
||||
pyProjectSettings = toml_load(file)
|
||||
|
||||
toolSection = pyProjectSettings["tool"]
|
||||
if "pytest" in toolSection:
|
||||
@@ -163,7 +163,7 @@ jobs:
|
||||
coverageRCFile = Path(coverageRC)
|
||||
if coverageRCFile.exists():
|
||||
with coverageRCFile.open("rb") as file:
|
||||
coverageRCSettings = tomli_load(file)
|
||||
coverageRCSettings = toml_load(file)
|
||||
|
||||
coverageHTMLDirectory = Path(coverageRCSettings["html"]["directory"])
|
||||
coverageXMLFile = Path(coverageRCSettings["xml"]["output"])
|
||||
|
||||
3
.github/workflows/InstallPackage.yml
vendored
3
.github/workflows/InstallPackage.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2025-2025 The pyTooling Authors #
|
||||
# Copyright 2025-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -70,7 +70,6 @@ jobs:
|
||||
python-markupsafe:p
|
||||
python-pyaml:p python-types-pyyaml:p
|
||||
python-ruamel-yaml:p python-ruamel.yaml.clib:p
|
||||
python-tomli:p
|
||||
|
||||
- name: 🐍 Setup Python ${{ matrix.python }}
|
||||
uses: actions/setup-python@v6
|
||||
|
||||
2
.github/workflows/IntermediateCleanUp.yml
vendored
2
.github/workflows/IntermediateCleanUp.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
2
.github/workflows/LaTeXDocumentation.yml
vendored
2
.github/workflows/LaTeXDocumentation.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
2
.github/workflows/Package.yml
vendored
2
.github/workflows/Package.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
6
.github/workflows/Parameters.yml
vendored
6
.github/workflows/Parameters.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -287,9 +287,9 @@ jobs:
|
||||
exclude_list = "${{ inputs.exclude_list }}".strip()
|
||||
disable_list = "${{ inputs.disable_list }}".strip()
|
||||
|
||||
currentMSYS2Version = "3.12"
|
||||
currentMSYS2Version = "3.13"
|
||||
currentAlphaVersion = "3.15"
|
||||
currentAlphaRelease = "3.15.0-a.1"
|
||||
currentAlphaRelease = "3.15.0-a.4"
|
||||
|
||||
if systems == "":
|
||||
print("::error title=Parameters::system_list is empty.")
|
||||
|
||||
21
.github/workflows/PrepareJob.yml
vendored
21
.github/workflows/PrepareJob.yml
vendored
@@ -1,3 +1,24 @@
|
||||
# ==================================================================================================================== #
|
||||
# Authors: #
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2025-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
# You may obtain a copy of the License at #
|
||||
# #
|
||||
# http://www.apache.org/licenses/LICENSE-2.0 #
|
||||
# #
|
||||
# Unless required by applicable law or agreed to in writing, software #
|
||||
# distributed under the License is distributed on an "AS IS" BASIS, #
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
|
||||
# See the License for the specific language governing permissions and #
|
||||
# limitations under the License. #
|
||||
# #
|
||||
# SPDX-License-Identifier: Apache-2.0 #
|
||||
# ==================================================================================================================== #
|
||||
name: Prepare Variables
|
||||
|
||||
on:
|
||||
|
||||
7
.github/workflows/PublishCoverageResults.yml
vendored
7
.github/workflows/PublishCoverageResults.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -124,9 +124,9 @@ jobs:
|
||||
run: |
|
||||
tree -pash artifacts
|
||||
|
||||
- name: 🔧 Install coverage and tomli
|
||||
- name: 🔧 Install coverage
|
||||
run: |
|
||||
python -m pip install -U --disable-pip-version-check --break-system-packages coverage[toml] tomli
|
||||
python -m pip install -U --disable-pip-version-check --break-system-packages coverage[toml]
|
||||
|
||||
- name: Rename .coverage files and move them all into 'coverage/'
|
||||
run: |
|
||||
@@ -205,6 +205,7 @@ jobs:
|
||||
continue-on-error: true
|
||||
with:
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
report_type: "coverage"
|
||||
disable_search: true
|
||||
files: ${{ fromJson(inputs.coverage_report_xml).fullpath }}
|
||||
flags: unittests
|
||||
|
||||
2
.github/workflows/PublishOnPyPI.yml
vendored
2
.github/workflows/PublishOnPyPI.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
10
.github/workflows/PublishReleaseNotes.yml
vendored
10
.github/workflows/PublishReleaseNotes.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -880,11 +880,11 @@ jobs:
|
||||
|
||||
export GH_TOKEN=${{ github.token }}
|
||||
|
||||
if [[ -s __ASSETS__.md ]]; then
|
||||
addNotes=("--notes-file" "__ASSETS__.md")
|
||||
if [[ -s __NOTES__.md ]]; then
|
||||
addNotes=("--notes-file" "__NOTES__.md")
|
||||
else
|
||||
printf " ${ANSI_LIGHT_RED}File '%s' not found.${ANSI_NOCOLOR}\n" "__ASSETS__.md"
|
||||
printf "::error title=%s::%s\n" "InternalError" "File '__ASSETS__.md' not found."
|
||||
printf " ${ANSI_LIGHT_RED}File '%s' not found.${ANSI_NOCOLOR}\n" "__NOTES__.md"
|
||||
printf "::error title=%s::%s\n" "InternalError" "File '__NOTES__.md' not found."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
5
.github/workflows/PublishTestResults.yml
vendored
5
.github/workflows/PublishTestResults.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -144,12 +144,13 @@ jobs:
|
||||
reporter: java-junit
|
||||
|
||||
- name: 📊 Publish unittest results at CodeCov
|
||||
uses: codecov/test-results-action@v1
|
||||
uses: codecov/codecov-action@v5
|
||||
id: codecov
|
||||
if: inputs.codecov == 'true'
|
||||
continue-on-error: true
|
||||
with:
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
report_type: "test_results"
|
||||
disable_search: true
|
||||
files: ${{ inputs.merged_junit_filename }}
|
||||
flags: ${{ inputs.codecov_flags }}
|
||||
|
||||
2
.github/workflows/PublishToGitHubPages.yml
vendored
2
.github/workflows/PublishToGitHubPages.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
6
.github/workflows/SphinxDocumentation.yml
vendored
6
.github/workflows/SphinxDocumentation.yml
vendored
@@ -3,7 +3,7 @@
|
||||
# Patrick Lehmann #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -99,7 +99,7 @@ jobs:
|
||||
with:
|
||||
python-version: ${{ inputs.python_version }}
|
||||
|
||||
- name: 🔧 Install wheel,tomli and pip dependencies (native)
|
||||
- name: 🔧 Install wheel and pip dependencies (native)
|
||||
run: |
|
||||
python -m pip install --disable-pip-version-check -U wheel
|
||||
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
|
||||
@@ -158,7 +158,7 @@ jobs:
|
||||
with:
|
||||
python-version: ${{ inputs.python_version }}
|
||||
|
||||
- name: 🔧 Install wheel,tomli and pip dependencies (native)
|
||||
- name: 🔧 Install wheel and pip dependencies (native)
|
||||
run: |
|
||||
python -m pip install --disable-pip-version-check -U wheel
|
||||
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
|
||||
|
||||
2
.github/workflows/StaticTypeCheck.yml
vendored
2
.github/workflows/StaticTypeCheck.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
2
.github/workflows/TagReleaseCommit.yml
vendored
2
.github/workflows/TagReleaseCommit.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
52
.github/workflows/UnitTesting.yml
vendored
52
.github/workflows/UnitTesting.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -69,13 +69,23 @@ on:
|
||||
required: false
|
||||
default: ''
|
||||
type: string
|
||||
windows_before_script:
|
||||
description: 'Scripts to execute before pytest on Windows (x64-64).'
|
||||
required: false
|
||||
default: ''
|
||||
type: string
|
||||
windows_arm_before_script:
|
||||
description: 'Scripts to execute before pytest on Windows (aarch64).'
|
||||
required: false
|
||||
default: ''
|
||||
type: string
|
||||
mingw64_before_script:
|
||||
description: 'Scripts to execute before pytest on Windows within MSYS2 MinGW64.'
|
||||
description: 'Scripts to execute before pytest on Windows (x64-64) within MSYS2 MinGW64.'
|
||||
required: false
|
||||
default: ''
|
||||
type: string
|
||||
ucrt64_before_script:
|
||||
description: 'Scripts to execute before pytest on Windows within MSYS2 UCRT64.'
|
||||
description: 'Scripts to execute before pytest on Windows (x64-64) within MSYS2 UCRT64.'
|
||||
required: false
|
||||
default: ''
|
||||
type: string
|
||||
@@ -199,12 +209,13 @@ jobs:
|
||||
|
||||
# Compute Dependencies for MSYS2 steps
|
||||
|
||||
- name: 🔧 Install dependencies (system Python for Python shell)
|
||||
if: matrix.system == 'msys2'
|
||||
shell: pwsh
|
||||
run: |
|
||||
py -3.9 -m pip install --disable-pip-version-check --break-system-packages -U tomli
|
||||
# - name: 🔧 Install dependencies (system Python for Python shell)
|
||||
# if: matrix.system == 'msys2'
|
||||
# shell: pwsh
|
||||
# run: |
|
||||
# py -3.12 -m pip install --disable-pip-version-check --break-system-packages -U tomli
|
||||
|
||||
# TODO: extract step to an Action so package, so code can be shared with AppTesting.yml
|
||||
- name: Compute path to requirements file
|
||||
id: requirements
|
||||
shell: python
|
||||
@@ -224,7 +235,7 @@ jobs:
|
||||
requirementsFile = Path(requirements)
|
||||
|
||||
if not requirementsFile.exists():
|
||||
print(f"::error title=FileNotFoundError::{ex}")
|
||||
print(f"::error title=FileNotFoundError::{requirementsFile}")
|
||||
exit(1)
|
||||
|
||||
print(f"requirements file: {requirementsFile.as_posix()}")
|
||||
@@ -237,6 +248,7 @@ jobs:
|
||||
else:
|
||||
print(f"requirements list: {requirements}")
|
||||
|
||||
# TODO: extract step to an Action so package lists are shared with UnitTesting (and GHDL?)
|
||||
- name: Compute pacman/pacboy packages
|
||||
id: pacboy
|
||||
if: matrix.system == 'msys2'
|
||||
@@ -273,6 +285,7 @@ jobs:
|
||||
dependencies = [req.strip() for req in requirements.split(" ")]
|
||||
|
||||
packages = {
|
||||
"aiohttp": "python-aiohttp:p",
|
||||
"coverage": "python-coverage:p",
|
||||
"docstr_coverage": "python-pyaml:p python-types-pyyaml:p",
|
||||
"igraph": "igraph:p",
|
||||
@@ -281,11 +294,11 @@ jobs:
|
||||
"numpy": "python-numpy:p",
|
||||
"markupsafe": "python-markupsafe:p",
|
||||
"pip": "python-pip:p",
|
||||
"pyyaml": "python-pyyaml:p python-types-pyyaml:p",
|
||||
"pyyaml": "python-pyaml:p python-types-pyyaml:p",
|
||||
"ruamel.yaml": "python-ruamel-yaml:p",
|
||||
# "ruamel.yaml": "python-ruamel-yaml:p python-ruamel.yaml.clib:p",
|
||||
"sphinx": "python-markupsafe:p",
|
||||
"tomli": "python-tomli:p",
|
||||
"tomli": "python-tomli:p", # outdated, now part of Python as tomllib
|
||||
"wheel": "python-wheel:p",
|
||||
"pyedaa.projectmodel": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
|
||||
"pyedaa.reports": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
|
||||
@@ -294,6 +307,7 @@ jobs:
|
||||
subPackages = {
|
||||
"pytooling": {
|
||||
"yaml": "python-ruamel-yaml:p python-ruamel.yaml.clib:p",
|
||||
"pypi": "python-aiohttp:p",
|
||||
},
|
||||
}
|
||||
|
||||
@@ -349,10 +363,10 @@ jobs:
|
||||
|
||||
# Python Dependency steps
|
||||
|
||||
- name: 🔧 Install wheel,tomli and pip dependencies (native)
|
||||
- name: 🔧 Install wheel and pip dependencies (native)
|
||||
if: matrix.system != 'msys2'
|
||||
run: |
|
||||
python -m pip install --disable-pip-version-check -U wheel tomli
|
||||
python -m pip install --disable-pip-version-check -U wheel
|
||||
python -m pip install --disable-pip-version-check ${{ steps.requirements.outputs.requirements }}
|
||||
|
||||
- name: 🔧 Install pip dependencies (MSYS2)
|
||||
@@ -378,13 +392,19 @@ jobs:
|
||||
if: ( matrix.system == 'ubuntu' || matrix.system == 'ubuntu-arm' ) && inputs.ubuntu_before_script != ''
|
||||
run: ${{ inputs.ubuntu_before_script }}
|
||||
|
||||
# TODO: Windows before script
|
||||
- name: 🪟 Windows (x86-64) before scripts
|
||||
if: matrix.system == 'windows' && inputs.windows_before_script != ''
|
||||
run: ${{ inputs.windows_before_script }}
|
||||
|
||||
- name: 🪟🟦 MinGW64 before scripts
|
||||
- name: 🏢 Windows (aarch64) before scripts
|
||||
if: matrix.system == 'windows-arm' && inputs.windows_arm_before_script != ''
|
||||
run: ${{ inputs.windows_arm_before_script }}
|
||||
|
||||
- name: 🪟🟦 Windows (x86-64) + MinGW64 before scripts
|
||||
if: matrix.system == 'msys2' && matrix.runtime == 'MINGW64' && inputs.mingw64_before_script != ''
|
||||
run: ${{ inputs.mingw64_before_script }}
|
||||
|
||||
- name: 🪟🟨 UCRT64 before scripts
|
||||
- name: 🪟🟨 Windows (x86-64) + UCRT64 before scripts
|
||||
if: matrix.system == 'msys2' && matrix.runtime == 'UCRT64' && inputs.ucrt64_before_script != ''
|
||||
run: ${{ inputs.ucrt64_before_script }}
|
||||
|
||||
|
||||
2
.github/workflows/VerifyDocs.yml
vendored
2
.github/workflows/VerifyDocs.yml
vendored
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
@@ -6,7 +6,7 @@ on:
|
||||
|
||||
jobs:
|
||||
Params:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: Example
|
||||
python_version_list: "3.13 3.14" # py-1, py-0
|
||||
@@ -50,7 +50,7 @@ jobs:
|
||||
retention-days: 1
|
||||
|
||||
ArtifactCleanUp:
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r7
|
||||
needs:
|
||||
- Params
|
||||
- Testing
|
||||
|
||||
46
.github/workflows/_Checking_JobTemplates.yml
vendored
46
.github/workflows/_Checking_JobTemplates.yml
vendored
@@ -6,20 +6,20 @@ on:
|
||||
|
||||
jobs:
|
||||
Prepare:
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r7
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: 'myPackage'
|
||||
python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
|
||||
disable_list: 'windows-arm:pypy-3.11'
|
||||
|
||||
PlatformTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: 'myPackage'
|
||||
name: 'Platform'
|
||||
@@ -27,14 +27,14 @@ jobs:
|
||||
system_list: 'ubuntu ubuntu-arm windows windows-arm macos mingw64 clang64 ucrt64'
|
||||
|
||||
InstallParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: 'myPackage'
|
||||
python_version: ${{ needs.UnitTestingParams.outputs.python_version }}
|
||||
python_version_list: ''
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -52,7 +52,7 @@ jobs:
|
||||
coverage_html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_html }}
|
||||
|
||||
PlatformTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- PlatformTestingParams
|
||||
@@ -72,7 +72,7 @@ jobs:
|
||||
coverage_html_artifact: ${{ fromJson(needs.PlatformTestingParams.outputs.artifact_names).codecoverage_html }}
|
||||
|
||||
StaticTypeCheck:
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -82,7 +82,7 @@ jobs:
|
||||
html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}
|
||||
|
||||
CodeQuality:
|
||||
uses: pyTooling/Actions/.github/workflows/CheckCodeQuality.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/CheckCodeQuality.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
with:
|
||||
@@ -93,7 +93,7 @@ jobs:
|
||||
artifact: 'CodeQuality'
|
||||
|
||||
DocCoverage:
|
||||
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -103,7 +103,7 @@ jobs:
|
||||
# fail_below: 70
|
||||
|
||||
Package:
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
# - UnitTesting
|
||||
@@ -113,7 +113,7 @@ jobs:
|
||||
artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}
|
||||
|
||||
Install:
|
||||
uses: pyTooling/Actions/.github/workflows/InstallPackage.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/InstallPackage.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- InstallParams
|
||||
@@ -124,7 +124,7 @@ jobs:
|
||||
package_name: ${{ needs.UnitTestingParams.outputs.package_fullname }}
|
||||
|
||||
PublishCoverageResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -143,7 +143,7 @@ jobs:
|
||||
secrets: inherit
|
||||
|
||||
PublishTestResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -158,14 +158,14 @@ jobs:
|
||||
secrets: inherit
|
||||
|
||||
# VerifyDocs:
|
||||
# uses: pyTooling/Actions/.github/workflows/VerifyDocs.yml@main
|
||||
# uses: pyTooling/Actions/.github/workflows/VerifyDocs.yml@r7
|
||||
# needs:
|
||||
# - UnitTestingParams
|
||||
# with:
|
||||
# python_version: ${{ needs.UnitTestingParams.outputs.python_version }}
|
||||
|
||||
Documentation:
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -182,7 +182,7 @@ jobs:
|
||||
latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }}
|
||||
|
||||
IntermediateCleanUp:
|
||||
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- PublishCoverageResults
|
||||
@@ -192,7 +192,7 @@ jobs:
|
||||
xml_unittest_artifacts_prefix: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}-
|
||||
|
||||
PDFDocumentation:
|
||||
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- Documentation
|
||||
@@ -202,7 +202,7 @@ jobs:
|
||||
pdf_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_pdf }}
|
||||
|
||||
PublishToGitHubPages:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- Documentation
|
||||
@@ -215,7 +215,7 @@ jobs:
|
||||
typing: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}
|
||||
|
||||
TriggerTaggedRelease:
|
||||
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r7
|
||||
needs:
|
||||
- Prepare
|
||||
- UnitTesting
|
||||
@@ -233,7 +233,7 @@ jobs:
|
||||
secrets: inherit
|
||||
|
||||
ReleasePage:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r7
|
||||
needs:
|
||||
- Prepare
|
||||
- UnitTesting
|
||||
@@ -251,7 +251,7 @@ jobs:
|
||||
secrets: inherit
|
||||
|
||||
PublishOnPyPI:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- ReleasePage
|
||||
@@ -264,7 +264,7 @@ jobs:
|
||||
secrets: inherit
|
||||
|
||||
ArtifactCleanUp:
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- PlatformTestingParams
|
||||
|
||||
@@ -6,7 +6,7 @@ on:
|
||||
|
||||
jobs:
|
||||
NamespacePackage:
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r7
|
||||
with:
|
||||
package_namespace: 'myFramework'
|
||||
package_name: 'Extension'
|
||||
|
||||
20
.github/workflows/_Checking_Parameters.yml
vendored
20
.github/workflows/_Checking_Parameters.yml
vendored
@@ -6,24 +6,24 @@ on:
|
||||
|
||||
jobs:
|
||||
Params_Default:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: Example
|
||||
|
||||
Params_PythonVersions:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: Example
|
||||
python_version_list: "3.12 3.13 pypy-3.10 pypy-3.11" # py-2, py-1, pypy-1, pypy-0
|
||||
|
||||
Params_Systems:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: Example
|
||||
system_list: "windows mingw32 mingw64"
|
||||
|
||||
Params_Include:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: Example
|
||||
python_version_list: "3.12" # py-2
|
||||
@@ -31,7 +31,7 @@ jobs:
|
||||
include_list: "ubuntu:3.13 ubuntu:3.14 ubuntu-arm:3.12"
|
||||
|
||||
Params_Exclude:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: Example
|
||||
python_version_list: "3.13" # py-1
|
||||
@@ -39,7 +39,7 @@ jobs:
|
||||
exclude_list: "windows:3.13 windows:3.14"
|
||||
|
||||
Params_Disable:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: Example
|
||||
python_version_list: "3.13" # py-1
|
||||
@@ -47,7 +47,7 @@ jobs:
|
||||
disable_list: "windows:3.13 windows:3.14"
|
||||
|
||||
Params_All:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: Example
|
||||
python_version_list: "3.12 3.13" # py-2, py-1
|
||||
@@ -73,7 +73,7 @@ jobs:
|
||||
expected-python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
|
||||
expected-systems: '["ubuntu", "ubuntu-arm", "windows", "windows-arm", "macos", "macos-arm"]'
|
||||
expected-exclude-jobs: '["windows-arm:3.10"]'
|
||||
expected-include-jobs: '["mingw64:3.12", "ucrt64:3.12"]'
|
||||
expected-include-jobs: '["mingw64:3.13", "ucrt64:3.13"]'
|
||||
generated-default-version: ${{ needs.Params_Default.outputs.python_version }}
|
||||
generated-jobmatrix: ${{ needs.Params_Default.outputs.python_jobs }}
|
||||
|
||||
@@ -101,7 +101,7 @@ jobs:
|
||||
expected-python-versions: '["3.12", "3.13", "pypy-3.10", "pypy-3.11"]'
|
||||
expected-systems: '["ubuntu", "ubuntu-arm", "windows", "windows-arm", "macos", "macos-arm"]'
|
||||
expected-exclude-jobs: '["windows-arm:pypy-3.10", "windows-arm:pypy-3.11"]'
|
||||
expected-include-jobs: '["mingw64:3.12", "ucrt64:3.12"]'
|
||||
expected-include-jobs: '["mingw64:3.13", "ucrt64:3.13"]'
|
||||
generated-default-version: ${{ needs.Params_PythonVersions.outputs.python_version }}
|
||||
generated-jobmatrix: ${{ needs.Params_PythonVersions.outputs.python_jobs }}
|
||||
|
||||
@@ -123,7 +123,7 @@ jobs:
|
||||
expected-python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
|
||||
expected-systems: '["windows"]'
|
||||
expected-exclude-jobs: '[]'
|
||||
expected-include-jobs: '["mingw32:3.12", "mingw64:3.12"]'
|
||||
expected-include-jobs: '["mingw32:3.13", "mingw64:3.13"]'
|
||||
generated-default-version: ${{ needs.Params_Systems.outputs.python_version }}
|
||||
generated-jobmatrix: ${{ needs.Params_Systems.outputs.python_jobs }}
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ on:
|
||||
|
||||
jobs:
|
||||
SimplePackage:
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@main
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r7
|
||||
with:
|
||||
package_name: 'myPackage'
|
||||
unittest_python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
|
||||
|
||||
2
dist/requirements.txt
vendored
2
dist/requirements.txt
vendored
@@ -1,2 +1,2 @@
|
||||
wheel ~= 0.45
|
||||
wheel ~= 0.45.0
|
||||
twine ~= 6.2
|
||||
|
||||
@@ -104,7 +104,7 @@ The following block shows a minimal YAML workflow file:
|
||||
# Update tag and pre-release
|
||||
# - Update (force-push) tag to the commit that is used in the workflow.
|
||||
# - Upload artifacts defined by the user.
|
||||
- uses: pyTooling/Actions/releaser@r0
|
||||
- uses: pyTooling/Actions/releaser@r4
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
files: |
|
||||
|
||||
@@ -42,7 +42,7 @@ to handover input parameters to the template.
|
||||
|
||||
jobs:
|
||||
<InstanceName>:
|
||||
uses: <GitHubOrganization>/<Repository>/.github/workflows/<Template>.yml@r6
|
||||
uses: <GitHubOrganization>/<Repository>/.github/workflows/<Template>.yml@r7
|
||||
with:
|
||||
<Param1>: <Value>
|
||||
|
||||
@@ -66,12 +66,12 @@ Documentation Only (Sphinx)
|
||||
|
||||
jobs:
|
||||
BuildTheDocs:
|
||||
uses: pyTooling/Actions/.github/workflows/BuildTheDocs.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/BuildTheDocs.yml@r7
|
||||
with:
|
||||
artifact: Documentation
|
||||
|
||||
PublishToGitHubPages:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r7
|
||||
needs:
|
||||
- BuildTheDocs
|
||||
with:
|
||||
|
||||
@@ -124,7 +124,6 @@ It can be used for simple Python packages as well as namespace packages.
|
||||
* :gh:`actions/setup-python`
|
||||
|
||||
* :pypi:`wheel`
|
||||
* :pypi:`tomli`
|
||||
|
||||
* :ref:`pyTooling/Actions/.github/workflows/UnitTesting.yml <JOBTMPL/UnitTesting>`
|
||||
|
||||
@@ -145,7 +144,6 @@ It can be used for simple Python packages as well as namespace packages.
|
||||
* pip
|
||||
|
||||
* :pypi:`wheel`
|
||||
* :pypi:`tomli`
|
||||
* Python packages specified via :ref:`JOBTMPL/UnitTesting/Input/requirements` or
|
||||
:ref:`JOBTMPL/UnitTesting/Input/mingw_requirements` parameter.
|
||||
|
||||
@@ -203,7 +201,6 @@ It can be used for simple Python packages as well as namespace packages.
|
||||
* pip
|
||||
|
||||
* :pypi:`coverage`
|
||||
* :pypi:`tomli`
|
||||
|
||||
* :gh:`pyTooling/upload-artifact`
|
||||
|
||||
@@ -289,7 +286,7 @@ Instantiation
|
||||
*************
|
||||
|
||||
The following instantiation example creates a ``SimplePackage`` job derived from job template ``CompletePipeline``
|
||||
version ``@r6``. It only requires the `package_name` parameter to run a full pipeline suitable for a Python project.
|
||||
version ``@r7``. It only requires the `package_name` parameter to run a full pipeline suitable for a Python project.
|
||||
|
||||
.. grid:: 2
|
||||
|
||||
@@ -307,7 +304,7 @@ version ``@r6``. It only requires the `package_name` parameter to run a full pip
|
||||
|
||||
jobs:
|
||||
SimplePackage:
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r7
|
||||
with:
|
||||
|
||||
package_name: myPackage
|
||||
@@ -321,7 +318,7 @@ version ``@r6``. It only requires the `package_name` parameter to run a full pip
|
||||
|
||||
jobs:
|
||||
NamespacePackage:
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r7
|
||||
with:
|
||||
package_namespace: myFramework
|
||||
package_name: Extension
|
||||
@@ -457,7 +454,7 @@ package_namespace
|
||||
|
||||
jobs:
|
||||
NamespacePackage:
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r7
|
||||
with:
|
||||
package_namespace: myFramework
|
||||
package_name: Extension
|
||||
@@ -505,7 +502,7 @@ package_name
|
||||
|
||||
jobs:
|
||||
SimplePackage:
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ The simplest variant just uses the artifact name for the package.
|
||||
|
||||
jobs:
|
||||
ArtifactCleanUp:
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r7
|
||||
with:
|
||||
package: Package
|
||||
|
||||
@@ -53,7 +53,7 @@ Complex Example
|
||||
|
||||
jobs:
|
||||
ArtifactCleanUp:
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r7
|
||||
needs:
|
||||
- Params
|
||||
- UnitTesting
|
||||
|
||||
@@ -33,14 +33,14 @@ variant after test results have been merged into a single file.
|
||||
Instantiation
|
||||
*************
|
||||
|
||||
The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version ``@r6``. It only
|
||||
The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version ``@r7``. It only
|
||||
requires a `name` parameter to create the artifact names.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
jobs:
|
||||
IntermediateCleanUp:
|
||||
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- PublishCoverageResults
|
||||
|
||||
@@ -46,12 +46,12 @@ Instantiation
|
||||
|
||||
jobs:
|
||||
UnitTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
Documentation:
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
with:
|
||||
@@ -60,7 +60,7 @@ Instantiation
|
||||
latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }}
|
||||
|
||||
PDFDocumentation:
|
||||
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- Documentation
|
||||
|
||||
@@ -51,7 +51,7 @@ Instantiation
|
||||
# ...
|
||||
|
||||
PublishToGitHubPages:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r7
|
||||
needs:
|
||||
- BuildTheDocs
|
||||
with:
|
||||
@@ -66,7 +66,7 @@ Instantiation
|
||||
|
||||
jobs:
|
||||
PublishToGitHubPages:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r7
|
||||
needs:
|
||||
- Params
|
||||
- BuildTheDocs
|
||||
|
||||
@@ -72,12 +72,12 @@ Instantiation
|
||||
|
||||
jobs:
|
||||
UnitTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
Documentation:
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
with:
|
||||
@@ -207,10 +207,10 @@ coverage_report_json
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
Documentation:
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -253,10 +253,10 @@ unittest_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
Documentation:
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
|
||||
@@ -47,7 +47,7 @@ Instantiation
|
||||
*************
|
||||
|
||||
The following instantiation example creates a ``Install`` job derived from job template ``InstallPackage`` version
|
||||
`@r6`. It installs the Python package on various platforms using a precomputed job-matrix created by job
|
||||
`@r7`. It installs the Python package on various platforms using a precomputed job-matrix created by job
|
||||
``InstallParams``. This job uses the same ``Parameters`` job template as job ``UnitTestingParams``, which was used to
|
||||
define parameters for the packaging job ``Package``.
|
||||
|
||||
@@ -55,25 +55,25 @@ define parameters for the packaging job ``Package``.
|
||||
|
||||
jobs:
|
||||
UnitTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
InstallParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
python_version_list: ''
|
||||
|
||||
Package:
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
with:
|
||||
artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}
|
||||
|
||||
Install:
|
||||
uses: pyTooling/Actions/.github/workflows/InstallPackage.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/InstallPackage.yml@r7
|
||||
needs:
|
||||
- UnitTestingParams
|
||||
- InstallParams
|
||||
|
||||
@@ -58,7 +58,7 @@ Simple Example
|
||||
|
||||
jobs:
|
||||
Package:
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@r7
|
||||
with:
|
||||
artifact: Package
|
||||
|
||||
@@ -70,7 +70,7 @@ Complex Example
|
||||
|
||||
jobs:
|
||||
Package:
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Package.yml@r7
|
||||
needs:
|
||||
- Params
|
||||
with:
|
||||
|
||||
@@ -63,7 +63,7 @@ by a Git tag. A secret is forwarded from GitHub secrets to a job secret.
|
||||
# ...
|
||||
|
||||
PublishOnPyPI:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r7
|
||||
if: startsWith(github.ref, 'refs/tags')
|
||||
with:
|
||||
artifact: Package
|
||||
@@ -87,7 +87,7 @@ by that job. Finally, the list of requirements is overwritten to load a list of
|
||||
# ...
|
||||
|
||||
PublishOnPyPI:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r7
|
||||
if: startsWith(github.ref, 'refs/tags')
|
||||
needs:
|
||||
- Params
|
||||
|
||||
@@ -56,7 +56,6 @@ cloud services like :term:`CodeCov` or :term:`Codacy`.
|
||||
* pip
|
||||
|
||||
* :pypi:`coverage`
|
||||
* :pypi:`tomli`
|
||||
|
||||
* :gh:`pyTooling/upload-artifact`
|
||||
|
||||
@@ -77,17 +76,17 @@ The following
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
UnitTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -96,7 +95,7 @@ The following
|
||||
coverage_sqlite_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }}
|
||||
|
||||
PublishCoverageResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -253,10 +252,10 @@ coverage_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
PublishCoverageResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -293,10 +292,10 @@ coverage_report_json
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
PublishCoverageResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -326,10 +325,10 @@ coverage_report_html
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
PublishCoverageResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
|
||||
@@ -85,7 +85,7 @@ Simple Example
|
||||
|
||||
jobs:
|
||||
PublishTestResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r7
|
||||
|
||||
Complex Example
|
||||
===============
|
||||
@@ -100,7 +100,7 @@ Complex Example
|
||||
# ...
|
||||
|
||||
PublishTestResults:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r7
|
||||
needs:
|
||||
- CodeCoverage
|
||||
- UnitTesting
|
||||
|
||||
@@ -41,19 +41,19 @@ The ``CheckDocumentation`` job checks the level of documentation coverage for Py
|
||||
Instantiation
|
||||
*************
|
||||
|
||||
The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version ``@r6``. It only
|
||||
The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version ``@r7``. It only
|
||||
requires a `name` parameter to create the artifact names.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
DocCoverage:
|
||||
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
|
||||
@@ -59,7 +59,7 @@ directory ``report/typing``.
|
||||
|
||||
jobs:
|
||||
StaticTypeCheck:
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r7
|
||||
with:
|
||||
cobertura_artifact: 'TypeChecking-Cobertura'
|
||||
junit_artifact: 'TypeChecking-JUnit'
|
||||
@@ -91,17 +91,17 @@ precompute the artifact's name.
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
Params:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
StaticTypeCheck:
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- Params
|
||||
@@ -221,10 +221,10 @@ cobertura_report
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -261,10 +261,10 @@ junit_report
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -294,10 +294,10 @@ html_report
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
|
||||
@@ -64,10 +64,10 @@ Instantiation
|
||||
|
||||
jobs:
|
||||
Prepare:
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r7
|
||||
|
||||
Release:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r7
|
||||
needs:
|
||||
- Prepare
|
||||
if: needs.Prepare.outputs.is_release_tag == 'true'
|
||||
@@ -441,7 +441,7 @@ replacements
|
||||
.. code-block:: yaml
|
||||
|
||||
ReleasePage:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r7
|
||||
needs:
|
||||
- Prepare
|
||||
if: needs.Prepare.outputs.is_release_tag == 'true'
|
||||
|
||||
@@ -47,21 +47,21 @@ Instantiation
|
||||
*************
|
||||
|
||||
The following instantiation example depicts three jobs within a bigger pipeline. The ``prepare`` job derived from job
|
||||
template ``PrepareJob`` version ``@r6`` figures out if a pipeline runs for a release merge-commit, for a tag or any
|
||||
template ``PrepareJob`` version ``@r7`` figures out if a pipeline runs for a release merge-commit, for a tag or any
|
||||
other reason. Its outputs are used to either run a ``TriggerTaggedRelease`` job derived from job template
|
||||
``TagReleaseCommit`` version ``@r6``, or alternatively run the ``ReleasePage`` job derived from job template
|
||||
``PublishReleaseNotes`` version ``@r6``.
|
||||
``TagReleaseCommit`` version ``@r7``, or alternatively run the ``ReleasePage`` job derived from job template
|
||||
``PublishReleaseNotes`` version ``@r7``.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
jobs:
|
||||
Prepare:
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r7
|
||||
|
||||
# Other pipeline jobs
|
||||
|
||||
TriggerTaggedRelease:
|
||||
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r7
|
||||
needs:
|
||||
- Prepare
|
||||
if: needs.Prepare.outputs.is_release_commit == 'true' && github.event_name != 'schedule'
|
||||
@@ -74,7 +74,7 @@ other reason. Its outputs are used to either run a ``TriggerTaggedRelease`` job
|
||||
secrets: inherit
|
||||
|
||||
ReleasePage:
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r7
|
||||
needs:
|
||||
- Prepare
|
||||
if: needs.Prepare.outputs.is_release_tag == 'true'
|
||||
|
||||
@@ -49,7 +49,6 @@ duplications within jobs.
|
||||
* :gh:`actions/setup-python`
|
||||
|
||||
* :pypi:`wheel`
|
||||
* :pypi:`tomli`
|
||||
|
||||
|
||||
.. _JOBTMPL/ExtractConfiguration/Instantiation:
|
||||
@@ -58,17 +57,17 @@ Instantiation
|
||||
*************
|
||||
|
||||
The following instantiation example creates a ``ConfigParams`` job derived from job template ``ExtractConfiguration``
|
||||
version ``@r6``. It requires no special parameters to extract unit test (pytest) and code coverage (Coverage.py)
|
||||
version ``@r7``. It requires no special parameters to extract unit test (pytest) and code coverage (Coverage.py)
|
||||
settings.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -250,10 +249,10 @@ unittest_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -265,10 +264,10 @@ unittest_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -283,10 +282,10 @@ unittest_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -333,10 +332,10 @@ unittest_merged_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -348,10 +347,10 @@ unittest_merged_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -366,10 +365,10 @@ unittest_merged_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -414,10 +413,10 @@ coverage_report_html
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -429,10 +428,10 @@ coverage_report_html
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -447,10 +446,10 @@ coverage_report_html
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -497,10 +496,10 @@ coverage_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -512,10 +511,10 @@ coverage_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -530,10 +529,10 @@ coverage_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -580,10 +579,10 @@ coverage_report_json
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -595,10 +594,10 @@ coverage_report_json
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -613,10 +612,10 @@ coverage_report_json
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -663,10 +662,10 @@ typing_report_cobertura
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -678,10 +677,10 @@ typing_report_cobertura
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -696,10 +695,10 @@ typing_report_cobertura
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -746,10 +745,10 @@ typing_report_junit
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -761,10 +760,10 @@ typing_report_junit
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -779,10 +778,10 @@ typing_report_junit
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -826,10 +825,10 @@ typing_report_html
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -841,10 +840,10 @@ typing_report_html
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -859,10 +858,10 @@ typing_report_html
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
OtherJob:
|
||||
uses: some/path/to/a/template@r6
|
||||
uses: some/path/to/a/template@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
|
||||
@@ -53,7 +53,7 @@ Simple Example
|
||||
:columns: 5
|
||||
|
||||
The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version
|
||||
``@r6``. It only requires a :ref:`JOBTMPL/Parameters/Input/package_name` parameter to create the artifact names.
|
||||
``@r7``. It only requires a :ref:`JOBTMPL/Parameters/Input/package_name` parameter to create the artifact names.
|
||||
|
||||
.. grid-item::
|
||||
:columns: 7
|
||||
@@ -62,12 +62,12 @@ Simple Example
|
||||
|
||||
jobs:
|
||||
Params:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- Params
|
||||
with:
|
||||
@@ -101,7 +101,7 @@ Complex Example
|
||||
|
||||
jobs:
|
||||
UnitTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_namespace: myFramework
|
||||
package_name: Extension
|
||||
@@ -111,7 +111,7 @@ Complex Example
|
||||
exclude_list: 'windows:pypy-3.10 windows:pypy-3.11'
|
||||
|
||||
PerformanceTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_namespace: myFramework
|
||||
package_name: Extension
|
||||
@@ -119,7 +119,7 @@ Complex Example
|
||||
system_list: 'ubuntu windows macos macos-arm'
|
||||
|
||||
PlatformTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_namespace: myFramework
|
||||
package_name: Extension
|
||||
@@ -272,7 +272,7 @@ package_namespace
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_namespace: myFramework
|
||||
package_name: Extension
|
||||
@@ -321,7 +321,7 @@ package_name
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
@@ -404,7 +404,7 @@ include_list
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
include_list: "ubuntu:3.11 macos:3.11"
|
||||
@@ -426,7 +426,7 @@ exclude_list
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
exclude_list: "windows:pypy-3.8 windows:pypy-3.9"
|
||||
@@ -449,7 +449,7 @@ disable_list
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
disable_list: "windows:3.10 windows:3.11"
|
||||
@@ -577,12 +577,12 @@ python_version
|
||||
|
||||
jobs:
|
||||
Params:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: pyTooling
|
||||
|
||||
CodeCoverage:
|
||||
uses: pyTooling/Actions/.github/workflows/CoverageCollection.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/CoverageCollection.yml@r7
|
||||
needs:
|
||||
- Params
|
||||
with:
|
||||
@@ -658,12 +658,12 @@ artifact_names
|
||||
|
||||
jobs:
|
||||
Params:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: pyTooling
|
||||
|
||||
Coverage:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- Params
|
||||
with:
|
||||
@@ -692,12 +692,12 @@ python_jobs
|
||||
|
||||
jobs:
|
||||
Params:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
name: pyDummy
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- Params
|
||||
with:
|
||||
|
||||
@@ -64,7 +64,7 @@ The job template generates various output parameters derived from
|
||||
Instantiation
|
||||
*************
|
||||
|
||||
The following instantiation example creates a ``Prepare`` job derived from job template ``PrepareJob`` version ``@r6``.
|
||||
The following instantiation example creates a ``Prepare`` job derived from job template ``PrepareJob`` version ``@r7``.
|
||||
In a default usecase, no input parameters need to be specified for the job template assuming a main-branch and
|
||||
release-branch called ``main``, a development-branch called ``dev``, as well as semantic versioning for tags and
|
||||
pull-request titles.
|
||||
@@ -73,7 +73,7 @@ pull-request titles.
|
||||
|
||||
jobs:
|
||||
Prepare:
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r7
|
||||
|
||||
<ReleaseJob>:
|
||||
needs:
|
||||
|
||||
@@ -60,7 +60,6 @@ Configuration options to :term:`pytest` should be given via section ``[tool.pyte
|
||||
* pip
|
||||
|
||||
* :pypi:`wheel`
|
||||
* :pypi:`tomli`
|
||||
* Python packages specified via :ref:`JOBTMPL/UnitTesting/Input/requirements` or
|
||||
:ref:`JOBTMPL/UnitTesting/Input/mingw_requirements` parameter.
|
||||
|
||||
@@ -71,7 +70,7 @@ Instantiation
|
||||
*************
|
||||
|
||||
The following instantiation example creates a ``UnitTesting`` job derived from job template ``UnitTesting`` version
|
||||
`@r6`. For providing the job matrix as a JSON string, the :ref:`JOBTMPL/Parameters` job template is used. Additionally,
|
||||
`@r7`. For providing the job matrix as a JSON string, the :ref:`JOBTMPL/Parameters` job template is used. Additionally,
|
||||
the job needs configuration settings, which are stored in :file:`pyproject.toml`. Instead of duplicating these settings,
|
||||
the :ref:`JOBTMPL/ExtractConfiguration` job template is used to extract these settings.
|
||||
|
||||
@@ -79,15 +78,15 @@ the :ref:`JOBTMPL/ExtractConfiguration` job template is used to extract these se
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTestingParams:
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
- UnitTestingParams
|
||||
@@ -513,10 +512,10 @@ unittest_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -564,10 +563,10 @@ coverage_report_xml
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -604,10 +603,10 @@ coverage_report_json
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
@@ -637,10 +636,10 @@ coverage_report_html
|
||||
.. code-block:: yaml
|
||||
|
||||
ConfigParams:
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r7
|
||||
|
||||
UnitTesting:
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r7
|
||||
needs:
|
||||
- ConfigParams
|
||||
with:
|
||||
|
||||
@@ -45,7 +45,7 @@ Some templates might provide output parameters, which can be used in dependent j
|
||||
|
||||
jobs:
|
||||
<InstanceName>:
|
||||
uses: <GitHubOrganization>/<Repository>/.github/workflows/<Template>.yml@r6
|
||||
uses: <GitHubOrganization>/<Repository>/.github/workflows/<Template>.yml@r7
|
||||
with:
|
||||
<Param1>: <Value1>
|
||||
<Param2>: <Value2>
|
||||
|
||||
@@ -121,7 +121,7 @@ Example Pipelines
|
||||
|
||||
jobs:
|
||||
SimplePackage:
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r7
|
||||
with:
|
||||
package_name: myPackage
|
||||
codecov: true
|
||||
@@ -147,7 +147,7 @@ Example Pipelines
|
||||
|
||||
jobs:
|
||||
NamespacePackage:
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
|
||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r7
|
||||
with:
|
||||
package_namespace: myFramework
|
||||
package_name: Extension
|
||||
@@ -164,7 +164,7 @@ Example Pipelines
|
||||
.. code-block:: toml
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools >= 80.0", "wheel ~= 0.45", "pyTooling ~= 8.8"]
|
||||
requires = ["setuptools >= 80.0", "wheel ~= 0.45.0", "pyTooling ~= 8.11"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.mypy]
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
-r ../requirements.txt
|
||||
|
||||
pyTooling ~= 8.8
|
||||
pyTooling ~= 8.11
|
||||
|
||||
# Enforce latest version on ReadTheDocs
|
||||
sphinx ~= 8.2
|
||||
docutils ~= 0.21
|
||||
sphinx ~= 9.1
|
||||
docutils ~= 0.22.0
|
||||
docutils_stubs ~= 0.0.22
|
||||
|
||||
# ReadTheDocs Theme
|
||||
sphinx_rtd_theme ~= 3.0
|
||||
|
||||
# Sphinx Extenstions
|
||||
sphinxcontrib-mermaid ~= 1.2
|
||||
sphinxcontrib-mermaid ~= 2.0
|
||||
autoapi >= 2.0.1
|
||||
sphinx_design ~= 0.6
|
||||
sphinx-copybutton >= 0.5
|
||||
sphinx_design ~= 0.7.0
|
||||
sphinx-copybutton >= 0.5.0
|
||||
sphinx_autodoc_typehints ~= 3.5 # 3.6 is conflicting with old sphinx_design and rtd theme due to sphinx<9 and docutils<0.22
|
||||
sphinx_reports ~= 0.9
|
||||
sphinx_reports ~= 0.10.0
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
# #
|
||||
# License: #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
|
||||
# Copyright 2017-2026 Patrick Lehmann - Bötzingen, Germany #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -34,7 +34,7 @@ A module for a set of dummy classes.
|
||||
|
||||
__author__ = "Patrick Lehmann"
|
||||
__email__ = "Paebbels@gmail.com"
|
||||
__copyright__ = "2017-2025, Patrick Lehmann"
|
||||
__copyright__ = "2017-2026, Patrick Lehmann"
|
||||
__license__ = "Apache License, Version 2.0"
|
||||
__version__ = "0.14.8"
|
||||
__keywords__ = ["GitHub Actions"]
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
# #
|
||||
# License: #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
|
||||
# Copyright 2017-2026 Patrick Lehmann - Bötzingen, Germany #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -34,9 +34,9 @@ A module for a set of dummy classes.
|
||||
|
||||
__author__ = "Patrick Lehmann"
|
||||
__email__ = "Paebbels@gmail.com"
|
||||
__copyright__ = "2017-2025, Patrick Lehmann"
|
||||
__copyright__ = "2017-2026, Patrick Lehmann"
|
||||
__license__ = "Apache License, Version 2.0"
|
||||
__version__ = "7.0.1"
|
||||
__version__ = "7.4.2"
|
||||
__keywords__ = ["GitHub Actions"]
|
||||
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
[build-system]
|
||||
requires = [
|
||||
"setuptools >= 80.0",
|
||||
"wheel ~= 0.45",
|
||||
"pyTooling ~= 8.8"
|
||||
"wheel ~= 0.45.0",
|
||||
"pyTooling ~= 8.11"
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
pyTooling ~= 8.8
|
||||
pyTooling ~= 8.11
|
||||
|
||||
7
run.ps1
7
run.ps1
@@ -116,7 +116,9 @@ $jobs = @()
|
||||
if ($livedoc)
|
||||
{ Write-Host -ForegroundColor DarkYellow "[live][DOC] Building documentation using Sphinx ..."
|
||||
|
||||
.\doc\make.bat html --verbose
|
||||
cd doc
|
||||
py -3.14 -m sphinx.cmd.build -b html . _build/html --doctree-dir _build/doctrees --jobs auto --warning-file _build/sphinx-warnings.log --verbose
|
||||
cd ..
|
||||
|
||||
Write-Host -ForegroundColor DarkYellow "[live][DOC] Documentation finished"
|
||||
}
|
||||
@@ -126,7 +128,8 @@ elseif ($doc)
|
||||
|
||||
# Compile documentation
|
||||
$compileDocFunc = {
|
||||
.\doc\make.bat html --verbose
|
||||
cd doc
|
||||
py -3.14 -m sphinx.cmd.build -b html . _build/html --doctree-dir _build/doctrees --jobs auto --warning-file _build/sphinx-warnings.log --verbose
|
||||
}
|
||||
$docJob = Start-Job -Name "Documentation" -ScriptBlock $compileDocFunc
|
||||
# $jobs += $docJob
|
||||
|
||||
2
setup.py
2
setup.py
@@ -11,7 +11,7 @@
|
||||
# #
|
||||
# License: #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
|
||||
# Copyright 2017-2026 Patrick Lehmann - Bötzingen, Germany #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
# #
|
||||
# License: #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
|
||||
# Copyright 2017-2026 Patrick Lehmann - Bötzingen, Germany #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -44,55 +44,55 @@ if __name__ == "__main__": # pragma: no cover
|
||||
|
||||
class PlatformTesting(TestCase):
|
||||
@mark.skipif(not CurrentPlatform.IsNativeLinux, reason="Skipped, if current platform isn't native Linux.")
|
||||
def test_ApplicationOnNativeLinux(self):
|
||||
def test_ApplicationOnNativeLinux(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertEqual(1, app.Value)
|
||||
|
||||
@mark.skipif(not CurrentPlatform.IsNativeMacOS, reason="Skipped, if current platform isn't native macOS.")
|
||||
def test_ApplicationOnNativeMacOS(self):
|
||||
def test_ApplicationOnNativeMacOS(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertEqual(2, app.Value)
|
||||
|
||||
@mark.skipif(not CurrentPlatform.IsNativeWindows, reason="Skipped, if current platform isn't native Windows.")
|
||||
def test_ApplicationOnNativeWindows(self):
|
||||
def test_ApplicationOnNativeWindows(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertEqual(3, app.Value)
|
||||
|
||||
@mark.skipif(not CurrentPlatform.IsMSYSOnWindows, reason="Skipped, if current platform isn't MSYS on Windows.")
|
||||
def test_ApplicationOnMSYS2OnWindows(self):
|
||||
def test_ApplicationOnMSYS2OnWindows(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertEqual(11, app.Value)
|
||||
|
||||
@mark.skipif(not CurrentPlatform.IsMinGW32OnWindows, reason="Skipped, if current platform isn't MinGW32 on Windows.")
|
||||
def test_ApplicationOnMinGW32OnWindows(self):
|
||||
def test_ApplicationOnMinGW32OnWindows(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertEqual(12, app.Value)
|
||||
|
||||
@mark.skipif(not CurrentPlatform.IsMinGW64OnWindows, reason="Skipped, if current platform isn't MinGW64 on Windows.")
|
||||
def test_ApplicationOnMinGW64OnWindows(self):
|
||||
def test_ApplicationOnMinGW64OnWindows(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertEqual(13, app.Value)
|
||||
|
||||
@mark.skipif(not CurrentPlatform.IsUCRT64OnWindows, reason="Skipped, if current platform isn't UCRT64 on Windows.")
|
||||
def test_ApplicationOnURTC64OnWindows(self):
|
||||
def test_ApplicationOnURTC64OnWindows(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertEqual(14, app.Value)
|
||||
|
||||
@mark.skipif(not CurrentPlatform.IsClang32OnWindows, reason="Skipped, if current platform isn't Clang32 on Windows.")
|
||||
def test_ApplicationOnClang32OnWindows(self):
|
||||
def test_ApplicationOnClang32OnWindows(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertEqual(15, app.Value)
|
||||
|
||||
@mark.skipif(not CurrentPlatform.IsClang64OnWindows, reason="Skipped, if current platform isn't Clang64 on Windows.")
|
||||
def test_ApplicationOnClang64OnWindows(self):
|
||||
def test_ApplicationOnClang64OnWindows(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertEqual(16, app.Value)
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
# #
|
||||
# License: #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
|
||||
# Copyright 2017-2026 Patrick Lehmann - Bötzingen, Germany #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
@@ -34,7 +34,7 @@ from myPackage import Application
|
||||
|
||||
|
||||
class Instantiation(TestCase):
|
||||
def test_Application(self):
|
||||
def test_Application(self) -> None:
|
||||
app = Application()
|
||||
|
||||
self.assertGreater(app.Value, 0)
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
# #
|
||||
# License: #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
|
||||
# Copyright 2017-2026 Patrick Lehmann - Bötzingen, Germany #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# Unai Martinez-Corral #
|
||||
# #
|
||||
# ==================================================================================================================== #
|
||||
# Copyright 2020-2025 The pyTooling Authors #
|
||||
# Copyright 2020-2026 The pyTooling Authors #
|
||||
# #
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
||||
# you may not use this file except in compliance with the License. #
|
||||
|
||||
Reference in New Issue
Block a user