Skip to content

Commit

Permalink
parallelize e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Mar 18, 2024
1 parent 4aabceb commit 8751601
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,18 @@ jobs:
end-to-end-tests:
runs-on: ubuntu-latest
needs: [ verify-formatting, verify-license-headers ]
strategy:
fail-fast: false
matrix:
variant: [ { dir: edc-tests/edc-controlplane},
{ dir: edc-tests/e2e-tests}
]
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/setup-java

- name: Run E2E tests
run: ./gradlew test -DincludeTags="EndToEndTest"
- name: Run E2E tests (${{ matrix.variant.dir }})
run: ./gradlew -p ${{ matrix.variant.dir }} test -DincludeTags="EndToEndTest"

postgres-tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8751601

Please sign in to comment.