From 286c9fa758d36ebf58c1e2e1ed709b2dfecb250b Mon Sep 17 00:00:00 2001 From: Aaron Son Date: Fri, 11 Jun 2021 11:58:43 -0700 Subject: [PATCH] .github: No really, do not run them with race. --- .github/workflows/ci-go-tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-go-tests.yaml b/.github/workflows/ci-go-tests.yaml index b4880e350e..4e02246ac4 100644 --- a/.github/workflows/ci-go-tests.yaml +++ b/.github/workflows/ci-go-tests.yaml @@ -75,8 +75,8 @@ jobs: - name: Test All working-directory: ./go run: | - go test -timeout 30m -race ./libraries/doltcore/sqle/altertests - go test -timeout 30m -race ./libraries/doltcore/sqle/integration_test + go test -timeout 30m ./libraries/doltcore/sqle/altertests + go test -timeout 30m ./libraries/doltcore/sqle/integration_test env: MATRIX_OS: ${{ matrix.os }} DOLT_TEST_RUN_NON_RACE_TESTS: "true"