Adjusted filter expression in find for PublishTestResults.

This commit is contained in:
Patrick Lehmann
2024-06-16 23:35:06 +02:00
parent ae13aa2dff
commit d4afc820ab
7 changed files with 10 additions and 10 deletions

View File

@@ -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 }}"

View File

@@ -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

View File

@@ -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 }}"

View File

@@ -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

View File

@@ -1,6 +1,6 @@
-r ../requirements.txt
pyTooling ~= 6.1
pyTooling ~= 6.3
# Enforce latest version on ReadTheDocs
sphinx ~= 7.3

View File

@@ -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"

View File

@@ -1 +1 @@
pyTooling ~= 6.1
pyTooling ~= 6.3