Skip to content

Commit

Permalink
Disable test affected by issue 35344 (#1363)
Browse files Browse the repository at this point in the history
  • Loading branch information
mocenas committed Aug 16, 2023
1 parent 2423625 commit f3dd42c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.quarkus.ts.http.jakartarest.reactive;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;

import io.quarkus.test.scenarios.OpenShiftDeploymentStrategy;
Expand All @@ -10,5 +11,6 @@
@OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtension)
// OCP Native coverage is not required (Test plan QUARKUS-2487), due to a lack of resources and the ROI.
@DisabledOnNative
@Disabled("https://github.com/quarkusio/quarkus/issues/35344")
public class OpenShiftCompressionHandlerIT extends CompressionHandlerIT {
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
import java.util.function.Predicate;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import io.quarkus.test.scenarios.OpenShiftScenario;

@OpenShiftScenario
@Disabled("https://github.com/quarkusio/quarkus/issues/35344")
public class OpenShiftExecutionModelIT extends ExecutionModelIT {
//TODO https://github.com/quarkusio/quarkus/issues/29642
// investigate: when FILE_SIZE is set to 99999999, we are getting a
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package io.quarkus.ts.http.jakartarest.reactive;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;

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

@Tag("use-quarkus-openshift-extension")
@OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtension)
@Disabled("https://github.com/quarkusio/quarkus/issues/35344")
public class OpenShiftHttpCachingIT extends HttpCachingIT {
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package io.quarkus.ts.http.jakartarest.reactive;

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

@OpenShiftScenario
@Disabled("https://github.com/quarkusio/quarkus/issues/35344")
public class OpenShiftRESTEasyReactiveMultipartIT extends RESTEasyReactiveMultipartIT {
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package io.quarkus.ts.http.jakartarest.reactive.json;

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

@OpenShiftScenario
@Disabled("https://github.com/quarkusio/quarkus/issues/35344")
public class OpenShiftJsonIT extends JsonIT {
}

0 comments on commit f3dd42c

Please sign in to comment.