Specific Test Run #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Specific Test Run | |
on: | |
workflow_dispatch: | |
inputs: | |
SPEC_NAMES: | |
description: "Spec names of running test/s" | |
required: true | |
SPECS_TYPE: | |
type: choice | |
description: "Specs type of running test/s" | |
default: all | |
options: | |
- all | |
- web | |
- api | |
HTML_REPORT_GENERATION: | |
type: choice | |
description: "Flag to configure html report generation" | |
default: "onFailure" | |
options: | |
- "true" | |
- "false" | |
- "onFailure" | |
TESTOMAT_REPORT_GENERATION: | |
type: choice | |
description: "Flag to configure testomat test run report generation" | |
default: "true" | |
options: | |
- "true" | |
- "false" | |
jobs: | |
test: | |
name: "Specific Test Run" | |
uses: ./.github/workflows/common-test.yml | |
with: | |
SPEC_NAMES: ${{ inputs.SPEC_NAMES }} | |
SPECS_TYPE: ${{ inputs.SPECS_TYPE }} | |
HTML_REPORT_GENERATION: ${{ inputs.HTML_REPORT_GENERATION }} | |
TESTOMAT_REPORT_GENERATION: ${{ inputs.TESTOMAT_REPORT_GENERATION }} | |
TESTOMATIO_TITLE: "Specific" | |
secrets: | |
SEED_PHRASE: ${{ secrets.SEED_PHRASE }} | |
TESTOMAT_API_KEY: ${{ secrets.TESTOMAT_API_KEY }} |