Skip to content

Commit

Permalink
fix: disable kubernetes_secrets unit-test that relies on timing for w…
Browse files Browse the repository at this point in the history
…indows platform (#6805)
  • Loading branch information
pkoutsovasilis authored Feb 11, 2025
1 parent 371399c commit 45e3abf
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"context"
"errors"
"fmt"
"runtime"
"sync"
"testing"
"time"
Expand Down Expand Up @@ -662,6 +663,10 @@ func Test_UpdateCache(t *testing.T) {
}

func Test_Run(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Flaky timing on Windows")
}

testDataBuilder := secretTestDataBuilder{
namespace: "default",
name: "secret_name",
Expand Down

0 comments on commit 45e3abf

Please sign in to comment.