Skip to content

Commit

Permalink
WIP: disable passing integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wking committed Aug 5, 2020
1 parent 122754f commit aabb0d5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/start/start_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ var (
)

func TestIntegrationCVO_initializeAndUpgrade(t *testing.T) {
t.Skipf("FIXME: focusing on step-down")
ctx := context.Background()
if os.Getenv("TEST_INTEGRATION") != "1" {
t.Skipf("Integration tests are disabled unless TEST_INTEGRATION=1")
Expand Down Expand Up @@ -360,6 +361,7 @@ func TestIntegrationCVO_initializeAndUpgrade(t *testing.T) {
}

func TestIntegrationCVO_initializeAndHandleError(t *testing.T) {
t.Skipf("FIXME: focusing on step-down")
ctx := context.Background()
if os.Getenv("TEST_INTEGRATION") != "1" {
t.Skipf("Integration tests are disabled unless TEST_INTEGRATION=1")
Expand Down Expand Up @@ -611,6 +613,7 @@ func TestIntegrationCVO_gracefulStepDown(t *testing.T) {
}

func TestIntegrationCVO_cincinnatiRequest(t *testing.T) {
t.Skipf("FIXME: focusing on step-down")
ctx := context.Background()
if os.Getenv("TEST_INTEGRATION") != "1" {
t.Skipf("Integration tests are disabled unless TEST_INTEGRATION=1")
Expand Down Expand Up @@ -1110,6 +1113,7 @@ func printCV(cv *configv1.ClusterVersion) string {
var reVariable = regexp.MustCompile(`\$\([a-zA-Z0-9_\-]+\)`)

func TestCreateContentReplacement(t *testing.T) {
t.Skipf("FIXME: focusing on step-down")
replacements := []map[string]string{
{"NS": "other"},
}
Expand Down

0 comments on commit aabb0d5

Please sign in to comment.