-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1314 from fedinskiy/fix/disable-management
Disable tests which use management interface
- Loading branch information
Showing
3 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
http/management/src/test/java/io/quarkus/qe/extension/OpenShiftDockerBuildIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
http/management/src/test/java/io/quarkus/qe/extension/OpenShiftExtensionIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters