diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index ef832ed8cbf0..4bfbbeb60ed0 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -19,8 +19,8 @@ jobs: - name: Run coverage run: go test -coverprofile=coverage.out -coverpkg=./... ./... - - name: Run coverage with new pickfirst - run: GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=true go test -coverprofile=coverage_new_pickfirst.out -coverpkg=./... ./... + - name: Run coverage with other pickfirst + run: GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false go test -coverprofile=coverage_other_pickfirst.out -coverpkg=./... ./... - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index f4c329580890..4a8cd29e68ea 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -69,7 +69,7 @@ jobs: - type: tests goversion: '1.24' testflags: -race - grpcenv: 'GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=true' + grpcenv: 'GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false' steps: # Setup the environment.