File tree Expand file tree Collapse file tree
.github/actions/acceptance-tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ runs:
4545 echo "PR_NUMBER=${{ inputs.targetEnvironment }}" >> $GITHUB_ENV
4646
4747 - name : Run component tests
48- if : inputs.testType == " component"
48+ if : inputs.testType == ' component'
4949 shell : bash
5050 run : |
5151 make test-component
5252
5353 - name : Check if e2e tests should run
54- if : inputs.testType == " e2e"
54+ if : inputs.testType == ' e2e'
5555 id : check_e2e
5656 shell : bash
5757 env :
@@ -75,14 +75,14 @@ runs:
7575 fi
7676
7777 - name : Install poetry and pytest
78- if : inputs.testType == " e2e" && steps.check_e2e.outputs.run_e2e == 'true'
78+ if : inputs.testType == ' e2e' && steps.check_e2e.outputs.run_e2e == 'true'
7979 shell : bash
8080 run : |
8181 pipx install poetry
8282 pip install pytest
8383
8484 - name : Run e2e tests
85- if : inputs.testType == " e2e" && steps.check_e2e.outputs.run_e2e == 'true'
85+ if : inputs.testType == ' e2e' && steps.check_e2e.outputs.run_e2e == 'true'
8686 shell : bash
8787 run : |
8888 make .internal-dev-test
You can’t perform that action at this time.
0 commit comments