Skip to content

Specific Test Run

Specific Test Run #20

Workflow file for this run

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: "HTML report generation"
default: "onFailure"
options:
- "true"
- "false"
- "onFailure"
TESTOMAT_REPORT_GENERATION:
type: choice
description: "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 }}