Skip to content

Commit

Permalink
Disable concurrent integration test runs
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 23, 2024
1 parent 0b3a400 commit 242183f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,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 242183f

Please sign in to comment.