Skip to content

Commit

Permalink
fix: Disable unreliable test (#11105)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joibel committed May 21, 2023
1 parent 332b0cf commit 9a2bb5e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions workflow/controller/operator_concurrency_test.go
Expand Up @@ -3,6 +3,7 @@ package controller
import (
"context"
"encoding/json"
"os"
"strconv"
"strings"
"testing"
Expand Down Expand Up @@ -903,6 +904,9 @@ func TestSynchronizationForPendingShuttingdownWfs(t *testing.T) {
})

t.Run("PendingShuttingdownStoppingWf", func(t *testing.T) {
if githubActions, ok := os.LookupEnv(`GITHUB_ACTIONS`); ok && githubActions == "true" {
t.Skip("This test regularly fails in Github Actions CI")
}
// Create and acquire the lock for the first workflow
wf := wfv1.MustUnmarshalWorkflow(pendingWfWithShutdownStrategy)
wf.Name = "one-stopping"
Expand Down

0 comments on commit 9a2bb5e

Please sign in to comment.