Skip to content

Commit

Permalink
Also disable native versions of mongo tests
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Aug 31, 2020
1 parent 2cf89e5 commit 5171432
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package io.quarkus.it.mongodb.panache.reactive

import io.quarkus.test.junit.NativeImageTest
import org.junit.jupiter.api.Disabled

@NativeImageTest
internal class NativeReactiveMongodbPanacheResourceIT : ReactiveMongodbPanacheResourceTest()
@Disabled("See https://github.com/quarkusio/quarkus/issues/11711")
internal class NativeReactiveMongodbPanacheResourceIT : ReactiveMongodbPanacheResourceTest()
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
package io.quarkus.it.mongodb.panache.reactive;

import org.junit.jupiter.api.Disabled;

import io.quarkus.test.junit.NativeImageTest;

@NativeImageTest
@Disabled("See https://github.com/quarkusio/quarkus/issues/11711")
class NativeMongodbPanacheResourceIT extends ReactiveMongodbPanacheResourceTest {

}

0 comments on commit 5171432

Please sign in to comment.