Skip to content

Commit

Permalink
Disable TodoDemoIT on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mocenas committed Nov 19, 2024
1 parent 96331e7 commit 9a671a9
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

import org.apache.http.HttpStatus;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

import io.quarkus.test.bootstrap.PostgresqlService;
import io.quarkus.test.bootstrap.RestService;
Expand All @@ -14,6 +16,7 @@
import io.restassured.http.ContentType;

@DisabledOnNative(reason = "This scenario is using uber-jar, so it's incompatible with Native")
@DisabledOnOs(value = OS.WINDOWS, disabledReason = "Tested app fails to build into uber-jar on windows. See https://github.com/quarkusio/todo-demo-app/issues/36")
@QuarkusScenario
public class TodoDemoIT {
private static final String TODO_REPO = "https://github.com/quarkusio/todo-demo-app.git";
Expand Down

0 comments on commit 9a671a9

Please sign in to comment.