Skip to content

Commit

Permalink
Disable flaky tests (#1225)
Browse files Browse the repository at this point in the history
* they're just flaky
  • Loading branch information
anthonydahanne authored Mar 1, 2024
1 parent a867006 commit 4a9a7cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import org.cloudfoundry.ApplicationUtils;
import org.cloudfoundry.CloudFoundryVersion;
import org.cloudfoundry.IfCloudFoundryVersion;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.annotation.Autowired;
Expand Down Expand Up @@ -116,6 +117,7 @@ public void readEvent() {
}

@Test
@Disabled("fails often for no reasons")
public void readGauge() {
final String gaugeName = this.nameFactory.getName("gauge-");
final Double value = this.random.nextDouble() % 100;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import org.cloudfoundry.operations.routes.UnmapRouteRequest;
import org.cloudfoundry.operations.services.BindRouteServiceInstanceRequest;
import org.cloudfoundry.operations.services.CreateUserProvidedServiceInstanceRequest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ClassPathResource;
Expand Down Expand Up @@ -269,6 +270,7 @@ public void deleteInvalidDomain() {
}

@Test
@Disabled("fails often for no reasons")
public void deleteOrphanedRoutes() {
String domainName = this.nameFactory.getDomainName();
String hostName = this.nameFactory.getHostName();
Expand Down

0 comments on commit 4a9a7cc

Please # to comment.