feat: expose name-ignore setting (#239)

Exposes `--name-ignore` as `test-ignore` in the ping test github action to be consistent with how `--name-filter` is exposed as `test-filter`

Follows on from #225
This commit is contained in:
Alex Potsides 2023-07-20 06:54:46 +01:00 committed by GitHub
parent 5a337a4b64
commit 5c74bfec3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,10 @@ inputs:
description: "Filter which tests to run out of the created matrix" description: "Filter which tests to run out of the created matrix"
required: false required: false
default: "" default: ""
test-ignore:
description: "Exclude tests from the created matrix that include this string in their name"
required: false
default: ""
extra-versions: extra-versions:
description: "Space-separated paths to JSON files describing additional images" description: "Space-separated paths to JSON files describing additional images"
required: false required: false
@ -104,7 +108,8 @@ runs:
WORKER_COUNT: ${{ inputs.worker-count }} WORKER_COUNT: ${{ inputs.worker-count }}
EXTRA_VERSION: ${{ inputs.extra-versions }} EXTRA_VERSION: ${{ inputs.extra-versions }}
NAME_FILTER: ${{ inputs.test-filter }} NAME_FILTER: ${{ inputs.test-filter }}
run: npm run test -- --extra-version=$EXTRA_VERSION --name-filter=$NAME_FILTER NAME_IGNORE: ${{ inputs.test-ignore }}
run: npm run test -- --extra-version=$EXTRA_VERSION --name-filter=$NAME_FILTER --name-ignore=$NAME_IGNORE
shell: bash shell: bash
- name: Print the results - name: Print the results