Skip to content

Commit 0806304

Browse files
committed
VED-812: Replace use of unavailable context.
1 parent 0197736 commit 0806304

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/run-e2e-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,9 @@ jobs:
166166
poetry run python -m unittest -c -v
167167
168168
batch-e2e-tests:
169-
needs: [e2e-tests]
170-
if: ${{ !cancelled() && jobs.wait-for-deployment.result == 'success' }}
169+
needs: [wait-for-deployment, e2e-tests]
170+
# Only actually depend on wait-for-deployment, but run after e2e-tests
171+
if: ${{ !cancelled() && needs.wait-for-deployment.result == 'success' }}
171172
runs-on: ubuntu-latest
172173
environment: ${{ inputs.environment }}
173174
steps:

0 commit comments

Comments
 (0)