Skip to content

Commit 4a9a7cc

Browse files
Disable flaky tests (#1225)
* they're just flaky
1 parent a867006 commit 4a9a7cc

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

integration-test/src/test/java/org/cloudfoundry/logcache/v1/LogCacheTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import org.cloudfoundry.ApplicationUtils;
2929
import org.cloudfoundry.CloudFoundryVersion;
3030
import org.cloudfoundry.IfCloudFoundryVersion;
31+
import org.junit.jupiter.api.Disabled;
3132
import org.junit.jupiter.api.Test;
3233
import org.springframework.beans.factory.InitializingBean;
3334
import org.springframework.beans.factory.annotation.Autowired;
@@ -116,6 +117,7 @@ public void readEvent() {
116117
}
117118

118119
@Test
120+
@Disabled("fails often for no reasons")
119121
public void readGauge() {
120122
final String gaugeName = this.nameFactory.getName("gauge-");
121123
final Double value = this.random.nextDouble() % 100;

integration-test/src/test/java/org/cloudfoundry/operations/RoutesTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
import org.cloudfoundry.operations.routes.UnmapRouteRequest;
4242
import org.cloudfoundry.operations.services.BindRouteServiceInstanceRequest;
4343
import org.cloudfoundry.operations.services.CreateUserProvidedServiceInstanceRequest;
44+
import org.junit.jupiter.api.Disabled;
4445
import org.junit.jupiter.api.Test;
4546
import org.springframework.beans.factory.annotation.Autowired;
4647
import org.springframework.core.io.ClassPathResource;
@@ -269,6 +270,7 @@ public void deleteInvalidDomain() {
269270
}
270271

271272
@Test
273+
@Disabled("fails often for no reasons")
272274
public void deleteOrphanedRoutes() {
273275
String domainName = this.nameFactory.getDomainName();
274276
String hostName = this.nameFactory.getHostName();

0 commit comments

Comments
 (0)