Skip to content

Commit c95e6c2

Browse files
committed
enable unit tests during integration testing
1 parent 2ed09f8 commit c95e6c2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

operator/src/test/java/oracle/kubernetes/TestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ private static Boolean checkKubernetes() {
3838
PrintStream savedOut = System.out;
3939
System.setOut(new PrintStream(new ByteArrayOutputStream()));
4040
try {
41-
CommandLine cmdLine = CommandLine.parse("kubectl cluster-info");
41+
CommandLine cmdLine = CommandLine.parse("kubectl cluster-info dump");
4242
DefaultExecutor executor = new DefaultExecutor();
4343
executor.execute(cmdLine);
4444
return true;

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@
117117
<id>integration-tests</id>
118118
<properties>
119119
<src-integration-test>${project.basedir}/src/integration-test/java</src-integration-test>
120-
<skip.unit.tests>true</skip.unit.tests>
121120
</properties>
122121
<build>
123122
<plugins>

0 commit comments

Comments
 (0)