Skip to content

Commit

Permalink
Don't run integration tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Mar 13, 2024
1 parent 0f5c54b commit 3695ab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Go test with Exasol version ${{ matrix.db }}
env:
DB_VERSION: ${{ matrix.db }}
run: go test -v -count 1 -coverprofile=coverage.out ./...
run: go test -v -p 1 -count 1 -coverprofile=coverage.out ./...

- name: SonarCloud Scan
if: matrix.go == env.DEFAULT_GO && matrix.db == env.DEFAULT_DB && github.repository_owner == 'exasol' && env.SONAR_TOKEN != null
Expand Down

0 comments on commit 3695ab3

Please sign in to comment.