Skip to content

Commit 70bd053

Browse files
fixed TEST_SUITE name
1 parent 3602aec commit 70bd053

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test-automation-v2.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Run tests(1)
9595
id: test1
9696
run: |
97-
if [ "${{ env.test_suite }}" == "gp" ]; then
97+
if [ "${{ env.test_suite }}" == "GoldenPath-Testing" ]; then
9898
echo "Running Golden Path Tests..."
9999
xvfb-run pytest -m gp --headed --html=report/report.html --self-contained-html
100100
else
@@ -113,7 +113,7 @@ jobs:
113113
id: test2
114114
if: ${{ steps.test1.outcome == 'failure' }}
115115
run: |
116-
if [ "${{ env.test_suite }}" == "gp" ]; then
116+
if [ "${{ env.test_suite }}" == "GoldenPath-Testing" ]; then
117117
echo "Running Golden Path Tests..."
118118
xvfb-run pytest -m gp --headed --html=report/report.html --self-contained-html
119119
else
@@ -132,7 +132,7 @@ jobs:
132132
id: test3
133133
if: ${{ steps.test2.outcome == 'failure' }}
134134
run: |
135-
if [ "${{ env.test_suite }}" == "gp" ]; then
135+
if [ "${{ env.test_suite }}" == "GoldenPath-Testing" ]; then
136136
echo "Running Golden Path Tests..."
137137
xvfb-run pytest -m gp --headed --html=report/report.html --self-contained-html
138138
else
@@ -153,7 +153,7 @@ jobs:
153153
if: always()
154154
run: |
155155
# Determine test suite type for title
156-
if [ "${{ env.test_suite }}" == "gp" ]; then
156+
if [ "${{ env.test_suite }}" == "GoldenPath-Testing" ]; then
157157
echo "## 🧪 E2E Test Job Summary : Golden Path testing" >> $GITHUB_STEP_SUMMARY
158158
else
159159
echo "## 🧪 E2E Test Job Summary : Smoke testing" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)