Skip to content

Commit

Permalink
Disable PojoResourceTest due to issue on Yasson 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu authored and fercomunello committed Aug 31, 2022
1 parent 595f4a1 commit 7e1229b
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

import io.quarkus.it.mongodb.pojo.Pojo;
import io.quarkus.test.common.QuarkusTestResource;
Expand All @@ -20,7 +19,12 @@

@QuarkusTest
@QuarkusTestResource(MongoTestResource.class)
@DisabledOnOs(OS.WINDOWS)
//@DisabledOnOs(OS.WINDOWS)
// This test is disabled but should only be disable on Windows (as with other MongoDB tests) due an issue at Yasson
// side https://github.com/eclipse-ee4j/yasson/issues/575.
// The Jakarata EE migration upgrades to Yasson 3.0.1 that contains the issue so we temporarily disable this test.
// To avoid forgetting it forever an issue has been created, see https://github.com/quarkusio/quarkus/issues/27619.
@Disabled
public class PojoResourceTest {

@BeforeEach
Expand Down

0 comments on commit 7e1229b

Please sign in to comment.