Skip to content

Commit

Permalink
Conditionally disabling IT test when testing native binaries.
Browse files Browse the repository at this point in the history
  • Loading branch information
pefernan committed Jan 12, 2024
1 parent 43967f8 commit 9925993
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,19 @@
*/
package org.kie.kogito.quarkus.workflows;

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

import io.quarkus.test.junit.DisabledOnIntegrationTest;
import io.quarkus.test.junit.QuarkusIntegrationTest;
import io.restassured.http.ContentType;

import static io.restassured.RestAssured.given;
import static org.hamcrest.CoreMatchers.is;

@QuarkusIntegrationTest
@Disabled
@DisabledOnIntegrationTest(
value = "Temporarily disabling test since python cannot be properly initialized inside the native image",
forArtifactTypes = DisabledOnIntegrationTest.ArtifactType.NATIVE_BINARY)
class PythonFlowIT {

@Test
Expand Down

0 comments on commit 9925993

Please sign in to comment.