From 234186c60c933fe8f76de0a0c974a513b08a38bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20M=C3=B6hlmann?= Date: Tue, 25 Apr 2023 18:30:08 +0300 Subject: [PATCH] do not run tests in parallel --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 6c80e53723..f87938d827 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -32,4 +32,4 @@ jobs: - name: Run integration test env: INTEGRATION_DB_FLAVOR: ${{ matrix.db }} - run: go test -tags=integration -v ./internal/integration ./internal/api/grpc/... + run: go test -tags=integration -parallel 1 -v ./internal/integration ./internal/api/grpc/...