Skip to content

Commit

Permalink
Fix: Missing report default on CI (#43)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew718PLTS <[email protected]>
  • Loading branch information
Andrew718PLTS and Andrew718PLTS authored Dec 6, 2024
1 parent 0ce49ae commit 25c9407
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/regression-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
with:
SPECS_TYPE: web
IS_PARALLEL_RUN: "true"
HTML_REPORT_GENERATION: ${{ inputs.HTML_REPORT_GENERATION }}
HTML_REPORT_GENERATION: ${{ inputs.HTML_REPORT_GENERATION || 'onFailure' }}
HTML_REPORT_NAME: "web-parallel-regression"
TESTOMAT_REPORT_GENERATION: ${{ inputs.TESTOMAT_REPORT_GENERATION }}
TESTOMAT_REPORT_GENERATION: ${{ inputs.TESTOMAT_REPORT_GENERATION || 'true' }}
TESTOMATIO_TITLE: "Web Parallel-Regression"

secrets:
Expand All @@ -46,9 +46,9 @@ jobs:
SPECS_FOLDER_NAME: swap
SPEC_NAMES: swapping
IS_PARALLEL_RUN: "false"
HTML_REPORT_GENERATION: ${{ inputs.HTML_REPORT_GENERATION }}
HTML_REPORT_GENERATION: ${{ inputs.HTML_REPORT_GENERATION || 'onFailure' }}
HTML_REPORT_NAME: "web-sequential-regression"
TESTOMAT_REPORT_GENERATION: ${{ inputs.TESTOMAT_REPORT_GENERATION }}
TESTOMAT_REPORT_GENERATION: ${{ inputs.TESTOMAT_REPORT_GENERATION || 'true' }}
TESTOMATIO_TITLE: "Web Sequential-Regression"

secrets:
Expand Down

0 comments on commit 25c9407

Please sign in to comment.