Skip to content

Commit 7348938

Browse files
committed
Stop running server discovery tests on Wercker
1 parent bddaa42 commit 7348938

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ public class ITServerDiscovery extends BaseTest {
8181
*/
8282
@BeforeClass
8383
public static void staticPrepare() throws Exception {
84+
Assume.assumeFalse(QUICKTEST);
8485
// initialize test properties and create the directories
8586
initialize(appPropsFile);
8687

@@ -123,6 +124,7 @@ public static void staticPrepare() throws Exception {
123124
*/
124125
@AfterClass
125126
public static void staticUnPrepare() throws Exception {
127+
Assume.assumeFalse(QUICKTEST);
126128
logger.info("+++++++++++++++++++++++++++++++++---------------------------------+");
127129
logger.info("BEGIN");
128130
logger.info("Run once, release cluster lease");
@@ -159,6 +161,7 @@ public static void staticUnPrepare() throws Exception {
159161
*/
160162
@Test
161163
public void testOPConnToNewMS() throws Exception {
164+
Assume.assumeFalse(QUICKTEST);
162165
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
163166
logTestBegin(testMethodName);
164167

@@ -249,6 +252,7 @@ public void testOPReconnToRunningMSAndScaleDown() throws Exception {
249252
*/
250253
@Test
251254
public void testOPReconnToRunningMSAndScaleUp() throws Exception {
255+
Assume.assumeFalse(QUICKTEST);
252256
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
253257
logTestBegin(testMethodName);
254258

@@ -403,7 +407,7 @@ public void testOPMSReconnToDomain() throws Exception {
403407
*/
404408
@Test
405409
public void testOPRestartDeadMS() throws Exception {
406-
Assume.assumeFalse(SMOKETEST);
410+
Assume.assumeFalse(QUICKTEST);
407411

408412
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
409413
logTestBegin(testMethodName);

0 commit comments

Comments
 (0)