From 464e6231699de0d5ab422ac655e8ed3a28c017e7 Mon Sep 17 00:00:00 2001 From: Kirill Date: Fri, 19 Jul 2024 16:31:34 +0300 Subject: [PATCH] Disable make test-race in github workflow (#1960) --- .github/workflows/juno-test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/juno-test.yml b/.github/workflows/juno-test.yml index 3a781db401..311c30a5b6 100644 --- a/.github/workflows/juno-test.yml +++ b/.github/workflows/juno-test.yml @@ -50,10 +50,11 @@ jobs: - name: Tests (No Coverage) if: matrix.os != 'ubuntu-latest' run: make test - - - name: Tests (Race Detection) - if: matrix.os == 'ubuntu-latest' - run: make test-race + +# Tests with race condition detector are flaky; we're disabling them for now +# - name: Tests (Race Detection) +# if: matrix.os == 'ubuntu-latest' +# run: make test-race - name: Benchmark run: make benchmarks