From 39f7cde8e3a03697b427611fd820c295605fcf16 Mon Sep 17 00:00:00 2001 From: Makram Date: Mon, 4 Sep 2023 12:07:22 +0300 Subject: [PATCH] chore: skip ocr2vrf tests (#10448) due to flakiness --- .../plugins/ocr2vrf/internal/ocr2vrf_integration_test.go | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/core/services/ocr2/plugins/ocr2vrf/internal/ocr2vrf_integration_test.go b/core/services/ocr2/plugins/ocr2vrf/internal/ocr2vrf_integration_test.go index dbd8f830f79..c6a4552683a 100644 --- a/core/services/ocr2/plugins/ocr2vrf/internal/ocr2vrf_integration_test.go +++ b/core/services/ocr2/plugins/ocr2vrf/internal/ocr2vrf_integration_test.go @@ -8,7 +8,6 @@ import ( "fmt" "math/big" "net" - "os" "testing" "time" @@ -323,16 +322,12 @@ func setupNodeOCR2( } func TestIntegration_OCR2VRF_ForwarderFlow(t *testing.T) { - if os.Getenv("CI") == "" && os.Getenv("VRF_LOCAL_TESTING") == "" { - t.Skip("Skipping test locally.") - } + t.Skip() runOCR2VRFTest(t, true) } func TestIntegration_OCR2VRF(t *testing.T) { - if os.Getenv("CI") == "" && os.Getenv("VRF_LOCAL_TESTING") == "" { - t.Skip("Skipping test locally.") - } + t.Skip() runOCR2VRFTest(t, false) }