Skip to content

Commit

Permalink
Disable concurrent integration test runs (#1426)
Browse files Browse the repository at this point in the history
Integration tests do not work well when running concurrently against
a single AWS account. Also integration tests clean up after themselves
so we don't want them to be canceled in the middle of a run.
  • Loading branch information
zaro0508 committed Jan 26, 2024
1 parent f6ba551 commit 58b9fef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/gate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
runs-on: ubuntu-latest
permissions:
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
steps:
- uses: actions/checkout@v4
- name: Install Poetry
Expand Down

0 comments on commit 58b9fef

Please sign in to comment.