Skip to content

Specific Test Run

Specific Test Run #40

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_FOLDER_NAME:
description: "Spec folder name of running test/s"
required: false
default: ""
SPECS_TYPE:
type: choice
description: "Specs type of running test/s"
default: web
options:
- 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"
IS_PARALLEL_RUN:
type: choice
description: "Parallel run flag of running tests"
default: "false"
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 }}
SPECS_FOLDER_NAME: ${{ inputs.SPECS_FOLDER_NAME }}
HTML_REPORT_GENERATION: ${{ inputs.HTML_REPORT_GENERATION }}
HTML_REPORT_NAME: "specific"
TESTOMAT_REPORT_GENERATION: ${{ inputs.TESTOMAT_REPORT_GENERATION }}
TESTOMATIO_TITLE: "Specific"
IS_PARALLEL_RUN: ${{ inputs.IS_PARALLEL_RUN }}
secrets:
SEED_PHRASE: ${{ secrets.SEED_PHRASE }}
TESTOMAT_API_KEY: ${{ secrets.TESTOMAT_API_KEY }}