Skip to content

Commit

Permalink
Disable tests which use management interface
Browse files Browse the repository at this point in the history
Since [1] does not seem to be fixed soon
[1] quarkusio/quarkus#34645
  • Loading branch information
fedinskiy committed Jul 11, 2023
1 parent 72eac83 commit a39631b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

import io.quarkus.test.scenarios.OpenShiftDeploymentStrategy;
import io.quarkus.test.scenarios.OpenShiftScenario;
import org.junit.jupiter.api.Disabled;

@OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtensionAndDockerBuildStrategy)
public class OpenShiftDockerBuildIT extends OpenShiftBaseDeploymentIT {
@Override
@Disabled("https://github.com/quarkusio/quarkus/issues/34645")
public void health() {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

import io.quarkus.test.scenarios.OpenShiftDeploymentStrategy;
import io.quarkus.test.scenarios.OpenShiftScenario;
import org.junit.jupiter.api.Disabled;

@OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtension)
public class OpenShiftExtensionIT extends OpenShiftBaseDeploymentIT {
@Override
@Disabled("https://github.com/quarkusio/quarkus/issues/34645")
public void health() {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import org.apache.http.HttpStatus;
import org.jboss.logging.Logger;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import io.quarkus.test.bootstrap.RestService;
Expand All @@ -27,6 +28,7 @@
* - `prime_number_test_{uniqueId}`: with information about the calculation of the prime number.
*/
@OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtension)
@Disabled("https://github.com/quarkusio/quarkus/issues/34645")
public class OpenShiftCustomMetricsIT {

private static final Logger LOG = Logger.getLogger(OpenShiftCustomMetricsIT.class);
Expand Down

0 comments on commit a39631b

Please sign in to comment.