Skip to content

Commit

Permalink
Merge pull request #830 from fedinskiy/feature/320_and_fix
Browse files Browse the repository at this point in the history
Disable OpenShift tests, which are broken in Quarkus 3.2.0.Final
  • Loading branch information
michalvavrik authored Jul 11, 2023
2 parents 0b271cb + e38ace2 commit 3fdd08a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
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 {
}
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 {
}

0 comments on commit 3fdd08a

Please sign in to comment.