Skip to content

Commit 3d761ad

Browse files
committed
Updated to execlude #testDeleteOneDomain and #testDeleteTwoDomains from quick tests.
1 parent 99804f6 commit 3d761ad

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/ITOperator.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,8 @@ public void testBCreateDomainWithDefaultValuesInSampleInputs() throws Exception
290290

291291
@Test
292292
public void testDeleteOneDomain() throws Exception {
293+
Assume.assumeFalse(
294+
System.getenv("QUICKTEST") != null && System.getenv("QUICKTEST").equalsIgnoreCase("true"));
293295
logTestBegin("Deleting one domain.");
294296

295297
if (operatorForDel1 == null) {
@@ -307,6 +309,8 @@ public void testDeleteOneDomain() throws Exception {
307309

308310
@Test
309311
public void testDeleteTwoDomains() throws Exception {
312+
Assume.assumeFalse(
313+
System.getenv("QUICKTEST") != null && System.getenv("QUICKTEST").equalsIgnoreCase("true"));
310314
logTestBegin("Deleting two domains.");
311315

312316
if (operatorForDel2 == null) {

integration-tests/src/test/java/oracle/kubernetes/operator/utils/K8sTestUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,6 @@ public void verifyPvs(String labelSelectors, int expected) throws Exception {
309309
null,
310310
null,
311311
Boolean.FALSE);
312-
// TODO verify {domainUID}-weblogic-sample-pv
313312
assertEquals("Number of PVs", v1PersistentVolumeList.getItems().size(), expected);
314313
}
315314

0 commit comments

Comments
 (0)