Skip to content

Commit

Permalink
Merge pull request #996 from Webperf-se/7h3Rabbit-patch-4
Browse files Browse the repository at this point in the history
GitHub Action (Manual - Run test for url) - Add improve-only flag as option
  • Loading branch information
7h3Rabbit authored Mar 4, 2025
2 parents 1c4ed5f + 1450767 commit 9c92527
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/manual-start-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ on:
required: true
default: 'false'
type: string
improve:
description: 'Setting general.review.improve-only'
required: true
default: 'true'
type: string
env:
TEST_TAG: webperfse/webperf-core:test
jobs:
Expand All @@ -42,5 +47,5 @@ jobs:
tags: ${{ env.TEST_TAG }}
- name: Test ${{ github.event.inputs.test }} for ${{ github.event.inputs.url }}
run: |
testresult=$(docker run ${{ env.TEST_TAG }} python default.py -t ${{ github.event.inputs.test }} -r --setting general.review.details=${{ github.event.inputs.details }} --setting general.review.data=${{ github.event.inputs.data }} -u ${{ github.event.inputs.url }})
testresult=$(docker run ${{ env.TEST_TAG }} python default.py -t ${{ github.event.inputs.test }} -r --setting general.review.details=${{ github.event.inputs.details }} --setting general.review.data=${{ github.event.inputs.data }} --setting general.review.improve-only=${{ github.event.inputs.improve }} -u ${{ github.event.inputs.url }})
echo "$testresult"

0 comments on commit 9c92527

Please sign in to comment.