Skip to content

Commit 92dfcf0

Browse files
cgwaltersopenshift-merge-robot
authored andcommitted
testiso: Don't run iso-live-login scenario by default
I need to debug coreos/fedora-coreos-config#339 (comment) and it's blocking CI on other projects right now: coreos/coreos-installer#216 (comment)
1 parent 6dfe26d commit 92dfcf0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mantle/cmd/kola/testiso.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ func init() {
9797
cmdTestIso.Flags().BoolVarP(&nopxe, "no-pxe", "P", false, "Skip testing live installer PXE")
9898
cmdTestIso.Flags().BoolVarP(&noiso, "no-iso", "", false, "Skip testing live installer ISO")
9999
cmdTestIso.Flags().BoolVar(&console, "console", false, "Display qemu console to stdout")
100-
cmdTestIso.Flags().StringSliceVar(&scenarios, "scenarios", []string{scenarioPXEInstall, scenarioISOInstall, scenarioISOLiveLogin}, fmt.Sprintf("Test scenarios (also available: %s)", scenarioLegacyInstall))
100+
// FIXME move scenarioISOLiveLogin into the defaults once https://github.com/coreos/fedora-coreos-config/pull/339#issuecomment-613000050 is fixed
101+
cmdTestIso.Flags().StringSliceVar(&scenarios, "scenarios", []string{scenarioPXEInstall, scenarioISOInstall}, fmt.Sprintf("Test scenarios (also available: %v)", []string{scenarioLegacyInstall, scenarioISOLiveLogin}))
101102

102103
root.AddCommand(cmdTestIso)
103104
}

0 commit comments

Comments
 (0)