File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
src/test/java/oracle/kubernetes/operator Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 68
68
<properties >
69
69
<src-integration-test >${project.basedir} /src/test/java</src-integration-test >
70
70
<resource-integration-test >${project.basedir} /src/test/resources</resource-integration-test >
71
+ <skipITs >false</skipITs >
71
72
</properties >
72
73
<build >
73
74
<plugins >
152
153
<!-- <TAGS>${env.TAGS}</TAGS> -->
153
154
<maxThreads >3</maxThreads >
154
155
</systemPropertyVariables >
155
- </configuration >
156
+ </configuration >
156
157
157
158
<executions >
158
159
<execution >
163
164
</goals >
164
165
<phase >integration-test</phase >
165
166
<configuration >
166
- <skipTests >false </skipTests >
167
+ <skipTests >${skipITs} </skipTests >
167
168
</configuration >
168
169
</execution >
169
170
</executions >
Original file line number Diff line number Diff line change 20
20
* Operator(s).
21
21
*/
22
22
@ FixMethodOrder (MethodSorters .NAME_ASCENDING )
23
- public class ITIntegrationTest extends BaseTest {
23
+ public class ITOperator extends BaseTest {
24
24
25
25
// property file used to customize operator properties for operator inputs yaml
26
26
private static String op1PropsFile = "ITFirstOperator.properties" ;
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ public void verifyAdminConsoleViaLB() throws Exception {
443
443
.append (" --write-out %{http_code} -o " )
444
444
.append (responseBodyFile );
445
445
logger .info ("cmd for curl " + cmd );
446
-
446
+
447
447
ExecResult result = ExecCommand .exec (cmd .toString ());
448
448
if (result .exitValue () != 0 ) {
449
449
throw new RuntimeException (
@@ -454,7 +454,7 @@ public void verifyAdminConsoleViaLB() throws Exception {
454
454
+ "\n "
455
455
+ result .stdout ());
456
456
}
457
-
457
+
458
458
String output = result .stdout ().trim ();
459
459
logger .info ("output " + output );
460
460
if (!output .equals ("200" )) {
You can’t perform that action at this time.
0 commit comments