-
Notifications
You must be signed in to change notification settings - Fork 28
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 #830 from fedinskiy/feature/320_and_fix
Disable OpenShift tests, which are broken in Quarkus 3.2.0.Final
- Loading branch information
Showing
2 changed files
with
6 additions
and
0 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
examples/management/src/test/java/io/quarkus/qe/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,11 @@ | ||
package io.quarkus.qe; | ||
|
||
import org.junit.jupiter.api.Disabled; | ||
|
||
import io.quarkus.test.scenarios.OpenShiftDeploymentStrategy; | ||
import io.quarkus.test.scenarios.OpenShiftScenario; | ||
|
||
@OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtensionAndDockerBuildStrategy) | ||
@Disabled("https://github.com/quarkusio/quarkus/issues/34645") | ||
public class OpenShiftDockerBuildIT extends LocalIT { | ||
} |
3 changes: 3 additions & 0 deletions
3
examples/management/src/test/java/io/quarkus/qe/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,11 @@ | ||
package io.quarkus.qe; | ||
|
||
import org.junit.jupiter.api.Disabled; | ||
|
||
import io.quarkus.test.scenarios.OpenShiftDeploymentStrategy; | ||
import io.quarkus.test.scenarios.OpenShiftScenario; | ||
|
||
@OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtension) | ||
@Disabled("https://github.com/quarkusio/quarkus/issues/34645") | ||
public class OpenShiftExtensionIT extends LocalIT { | ||
} |