Skip to content

Commit

Permalink
Merge pull request #1314 from fedinskiy/fix/disable-management
Browse files Browse the repository at this point in the history
Disable tests which use management interface
  • Loading branch information
jsmrcka authored Jul 12, 2023
2 parents 72eac83 + df0bf58 commit 77a334d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
package io.quarkus.qe.extension;

import org.junit.jupiter.api.Disabled;

import io.quarkus.test.scenarios.OpenShiftDeploymentStrategy;
import io.quarkus.test.scenarios.OpenShiftScenario;

@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
@@ -1,8 +1,14 @@
package io.quarkus.qe.extension;

import org.junit.jupiter.api.Disabled;

import io.quarkus.test.scenarios.OpenShiftDeploymentStrategy;
import io.quarkus.test.scenarios.OpenShiftScenario;

@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 77a334d

Please sign in to comment.