Skip to content

Commit

Permalink
chore: skip ocr2vrf tests (#10448)
Browse files Browse the repository at this point in the history
due to flakiness
  • Loading branch information
makramkd authored Sep 4, 2023
1 parent 528dfc6 commit 39f7cde
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
"fmt"
"math/big"
"net"
"os"
"testing"
"time"

Expand Down Expand Up @@ -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)
}

Expand Down

0 comments on commit 39f7cde

Please sign in to comment.