diff --git a/.github/workflows/ApplicationTesting.yml b/.github/workflows/ApplicationTesting.yml index c327cb9..eab42c7 100644 --- a/.github/workflows/ApplicationTesting.yml +++ b/.github/workflows/ApplicationTesting.yml @@ -215,7 +215,7 @@ jobs: ls -l install python -m pip install --disable-pip-version-check -U install/*.whl - - name: ☑ Run application tests (Ubuntu/macOS) + - name: ✅ Run application tests (Ubuntu/macOS) if: matrix.system != 'windows' run: | export ENVIRONMENT_NAME="${{ matrix.envname }}" @@ -230,7 +230,7 @@ jobs: python -m pytest -raP $PYTEST_ARGS --color=yes ${{ inputs.tests_directory || '.' }}/${{ inputs.apptest_directory }} fi - - name: ☑ Run application tests (Windows) + - name: ✅ Run application tests (Windows) if: matrix.system == 'windows' run: | $env:ENVIRONMENT_NAME = "${{ matrix.envname }}" diff --git a/.github/workflows/PublishTestResults.yml b/.github/workflows/PublishTestResults.yml index f305cf1..5e3c2a1 100644 --- a/.github/workflows/PublishTestResults.yml +++ b/.github/workflows/PublishTestResults.yml @@ -58,7 +58,7 @@ jobs: - name: Move JUnit files and collect them all to junit/ run: | mkdir -p junit - find . -type f -path "*artifacts*UnitTestReportSummary*.xml" -exec sh -c 'cp -v $0 "junit/$(basename $(dirname $0)).$(basename $0)"' {} ';' + find . -type f -path "*artifacts*TestReportSummary-XML*.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/.github/workflows/UnitTesting.yml b/.github/workflows/UnitTesting.yml index f51b8cf..8228b9b 100644 --- a/.github/workflows/UnitTesting.yml +++ b/.github/workflows/UnitTesting.yml @@ -294,7 +294,7 @@ jobs: print(f"DEBUG:\n html={htmlDirectory}\n xml={xmlFile}\n json={jsonFile}") - - name: ☑ Run unit tests (Ubuntu/macOS) + - name: ✅ Run unit tests (Ubuntu/macOS) if: matrix.system != 'windows' run: | export ENVIRONMENT_NAME="${{ matrix.envname }}" @@ -310,7 +310,7 @@ jobs: python -m pytest -raP $PYTEST_ARGS --color=yes ${{ inputs.tests_directory || '.' }}/${{ inputs.unittest_directory }} fi - - name: ☑ Run unit tests (Windows) + - name: ✅ Run unit tests (Windows) if: matrix.system == 'windows' run: | $env:ENVIRONMENT_NAME = "${{ matrix.envname }}" diff --git a/.github/workflows/VerifyDocs.yml b/.github/workflows/VerifyDocs.yml index 5866d84..4b8d772 100644 --- a/.github/workflows/VerifyDocs.yml +++ b/.github/workflows/VerifyDocs.yml @@ -72,7 +72,7 @@ jobs: - name: Print example.py run: cat tests/docs/example.py - - name: ☑ Run example snippet + - name: ✅ Run example snippet working-directory: tests/docs run: | python3 example.py diff --git a/doc/requirements.txt b/doc/requirements.txt index f792000..6f7cb1f 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,6 +1,6 @@ -r ../requirements.txt -pyTooling ~= 6.1 +pyTooling ~= 6.3 # Enforce latest version on ReadTheDocs sphinx ~= 7.3 diff --git a/pyproject.toml b/pyproject.toml index 52b2f0f..6ba5992 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [build-system] requires = [ - "setuptools ~= 69.5", + "setuptools ~= 70.0", "wheel ~= 0.40.0", - "pyTooling ~= 6.1" + "pyTooling ~= 6.3" ] build-backend = "setuptools.build_meta" diff --git a/requirements.txt b/requirements.txt index 963d44c..2c08940 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pyTooling ~= 6.1 +pyTooling ~= 6.3