|
54 | 54 | defaultConditions = e2e.Flag("default-conditions", "Comma separated list of default conditions to wait for a successful test.\n"+
|
55 | 55 | "Conditions could be overridden per resource using \"uptest.upbound.io/conditions\" annotation.").Default("Ready").String()
|
56 | 56 |
|
57 |
| - skipDelete = e2e.Flag("skip-delete", "Skip the delete step of the test.").Default("false").Bool() |
58 |
| - testDir = e2e.Flag("test-directory", "Directory where kuttl test case will be generated and executed.").Envar("UPTEST_TEST_DIR").Default(filepath.Join(os.TempDir(), "uptest-e2e")).String() |
| 57 | + skipDelete = e2e.Flag("skip-delete", "Skip the delete step of the test.").Default("false").Bool() |
| 58 | + testDir = e2e.Flag("test-directory", "Directory where kuttl test case will be generated and executed.").Envar("UPTEST_TEST_DIR").Default(filepath.Join(os.TempDir(), "uptest-e2e")).String() |
| 59 | + onlyCleanUptestResources = e2e.Flag("only-clean-uptest-resources", "While deletion step, only clean resources that were created by uptest").Default("false").Bool() |
59 | 60 | )
|
60 | 61 |
|
61 | 62 | var (
|
@@ -115,14 +116,15 @@ func e2eTests() {
|
115 | 116 | }
|
116 | 117 | }
|
117 | 118 | o := &config.AutomatedTest{
|
118 |
| - ManifestPaths: examplePaths, |
119 |
| - DataSourcePath: *dataSourcePath, |
120 |
| - SetupScriptPath: setupPath, |
121 |
| - TeardownScriptPath: teardownPath, |
122 |
| - DefaultConditions: strings.Split(*defaultConditions, ","), |
123 |
| - DefaultTimeout: *defaultTimeout, |
124 |
| - Directory: *testDir, |
125 |
| - SkipDelete: *skipDelete, |
| 119 | + ManifestPaths: examplePaths, |
| 120 | + DataSourcePath: *dataSourcePath, |
| 121 | + SetupScriptPath: setupPath, |
| 122 | + TeardownScriptPath: teardownPath, |
| 123 | + DefaultConditions: strings.Split(*defaultConditions, ","), |
| 124 | + DefaultTimeout: *defaultTimeout, |
| 125 | + Directory: *testDir, |
| 126 | + SkipDelete: *skipDelete, |
| 127 | + OnlyCleanUptestResources: *onlyCleanUptestResources, |
126 | 128 | }
|
127 | 129 |
|
128 | 130 | kingpin.FatalIfError(internal.RunTest(o), "cannot run e2e tests successfully")
|
|
0 commit comments