diff --git a/.github/workflows/PublishTestResults.yml b/.github/workflows/PublishTestResults.yml index 9fc3ba7..118e286 100644 --- a/.github/workflows/PublishTestResults.yml +++ b/.github/workflows/PublishTestResults.yml @@ -51,14 +51,15 @@ jobs: with: path: artifacts - - name: 🔧 Install junitparser + - name: 🔧 Install pyEDAA.Reports (JUunit Parser and Merger) run: | python -m pip install --disable-pip-version-check --break-system-packages -U pyEDAA.Reports - name: Move JUnit files and collect them all to junit/ run: | mkdir -p junit - find . -type f -path "*artifacts*TestReportSummary-XML*.xml" -exec sh -c 'cp -v $0 "junit/$(basename $(dirname $0)).$(basename $0)"' {} ';' + ls -lAh artifacts/*/*.xml + find artifacts/ -type f -path "*TestReportSummary*.xml" -exec sh -c 'cp -v $0 "junit/$(basename $(dirname $0)).$(basename $0)"' {} ';' tree -a junit - name: 🔁 Merge JUnit Unit Test Summaries diff --git a/doc/requirements.txt b/doc/requirements.txt index daaff1d..faf4989 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -16,5 +16,5 @@ sphinxcontrib-mermaid>=0.9.2 autoapi >= 2.0.1 sphinx_fontawesome >= 0.0.6 sphinx-inline-tabs >= 2023.4.21 -sphinx_autodoc_typehints ~= 2.1 +sphinx_autodoc_typehints ~= 2.3 # changelog>=0.3.5 diff --git a/pyproject.toml b/pyproject.toml index 5d2e0ba..1ac9eaf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "setuptools ~= 72.1", + "setuptools ~= 74.1", "wheel ~= 0.44", "pyTooling ~= 6.5" ] diff --git a/tests/requirements.txt b/tests/requirements.txt index b7fdbd9..77e2f22 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -10,4 +10,4 @@ pytest-cov ~= 5.0 # Static Type Checking mypy ~= 1.11 typing_extensions ~= 4.12 -lxml ~= 5.2 +lxml ~= 5.3