mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
Added pytest_cleanup variable.
This commit is contained in:
7
.github/workflows/PublishTestResults.yml
vendored
7
.github/workflows/PublishTestResults.yml
vendored
@@ -30,6 +30,11 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
default: ''
|
default: ''
|
||||||
type: string
|
type: string
|
||||||
|
additional_merge_args:
|
||||||
|
description: 'Additional merging arguments.'
|
||||||
|
required: false
|
||||||
|
default: '--pytest "pytest.tests.unit"'
|
||||||
|
type: string
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
PublishTestResults:
|
PublishTestResults:
|
||||||
@@ -58,7 +63,7 @@ jobs:
|
|||||||
|
|
||||||
- name: 🔁 Merge JUnit Unit Test Summaries
|
- name: 🔁 Merge JUnit Unit Test Summaries
|
||||||
run: |
|
run: |
|
||||||
pyedaa-reports merge-unittest -d --pytest "pytest.tests.unit;pytest.tests.platform;pytest.tests.benchmark;pytest.tests.performance" --junit "junit/*.xml"
|
pyedaa-reports merge-unittest ${{ inputs.additional_merge_args }} --junit "junit/*.xml"
|
||||||
echo "cat Unittesting.xml"
|
echo "cat Unittesting.xml"
|
||||||
cat Unittesting.xml
|
cat Unittesting.xml
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/_Checking_Pipeline.yml
vendored
2
.github/workflows/_Checking_Pipeline.yml
vendored
@@ -88,6 +88,8 @@ jobs:
|
|||||||
needs:
|
needs:
|
||||||
- UnitTesting
|
- UnitTesting
|
||||||
- PlatformTesting
|
- PlatformTesting
|
||||||
|
with:
|
||||||
|
additional_merge_args: '-d --pytest "pytest.tests.unit;pytest.tests.platform;pytest.tests.benchmark;pytest.tests.performance"'
|
||||||
|
|
||||||
Package:
|
Package:
|
||||||
uses: pyTooling/Actions/.github/workflows/Package.yml@r1
|
uses: pyTooling/Actions/.github/workflows/Package.yml@r1
|
||||||
|
|||||||
Reference in New Issue
Block a user