Skip to content

Commit b51bedb

Browse files
committed
fix: Include concurrency provider in e2e tests
The `gosmee` client for the main controller was not run for the `concurrency` provider. This change includes the `concurrency` provider in the conditional logic, ensuring that the `gosmee` client is executed for it.
1 parent baf9c3c commit b51bedb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ jobs:
307307
nohup gosmee client --saveDir /tmp/gosmee-replay ${{ secrets.PYSMEE_URL }} "https://${CONTROLLER_DOMAIN_URL}" > /tmp/gosmee-main.log 2>&1 &
308308
309309
- name: Run gosmee for main controller (Gitea)
310-
if: startsWith(matrix.provider, 'gitea')
310+
if: startsWith(matrix.provider, 'gitea') || matrix.provider == 'concurrency'
311311
run: |
312312
nohup gosmee client --saveDir /tmp/gosmee-replay ${{ secrets.TEST_GITEA_SMEEURL }} "https://${CONTROLLER_DOMAIN_URL}" >> /tmp/gosmee-main.log 2>&1 &
313313

0 commit comments

Comments
 (0)