9595 id : test1
9696 run : |
9797 if [ "${{ env.test_suite }}" == "GoldenPath-Testing" ]; then
98- echo "Running Golden Path Tests..."
9998 xvfb-run pytest -m gp --headed --html=report/report.html --self-contained-html
10099 else
101- echo "Running All Tests..."
102100 xvfb-run pytest --headed --html=report/report.html --self-contained-html
103101 fi
104102 working-directory : tests/e2e-test
@@ -114,10 +112,8 @@ jobs:
114112 if : ${{ steps.test1.outcome == 'failure' }}
115113 run : |
116114 if [ "${{ env.test_suite }}" == "GoldenPath-Testing" ]; then
117- echo "Running Golden Path Tests..."
118115 xvfb-run pytest -m gp --headed --html=report/report.html --self-contained-html
119116 else
120- echo "Running All Tests..."
121117 xvfb-run pytest --headed --html=report/report.html --self-contained-html
122118 fi
123119 working-directory : tests/e2e-test
@@ -133,10 +129,8 @@ jobs:
133129 if : ${{ steps.test2.outcome == 'failure' }}
134130 run : |
135131 if [ "${{ env.test_suite }}" == "GoldenPath-Testing" ]; then
136- echo "Running Golden Path Tests..."
137132 xvfb-run pytest -m gp --headed --html=report/report.html --self-contained-html
138133 else
139- echo "Running All Tests..."
140134 xvfb-run pytest --headed --html=report/report.html --self-contained-html
141135 fi
142136 working-directory : tests/e2e-test
@@ -154,9 +148,9 @@ jobs:
154148 run : |
155149 # Determine test suite type for title
156150 if [ "${{ env.test_suite }}" == "GoldenPath-Testing" ]; then
157- echo "## 🧪 E2E Test Job Summary : Golden Path testing " >> $GITHUB_STEP_SUMMARY
151+ echo "## 🧪 E2E Test Job Summary : Golden Path Testing " >> $GITHUB_STEP_SUMMARY
158152 else
159- echo "## 🧪 E2E Test Job Summary : Smoke testing " >> $GITHUB_STEP_SUMMARY
153+ echo "## 🧪 E2E Test Job Summary : Smoke Testing " >> $GITHUB_STEP_SUMMARY
160154 fi
161155 echo "" >> $GITHUB_STEP_SUMMARY
162156 echo "| Field | Value |" >> $GITHUB_STEP_SUMMARY
0 commit comments