Skip to content

Commit

Permalink
Merge pull request #11751 from geoand/more-mongo-disable
Browse files Browse the repository at this point in the history
Also disable native versions of mongo tests
  • Loading branch information
gsmet committed Aug 31, 2020
2 parents 7e95d68 + 5171432 commit 2cc51ab
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 2cc51ab

Please sign in to comment.