0

我试图弄清楚为什么运行 a./mvnw package会导致错误

Caused by: java.lang.RuntimeException: Attempted to mix @NativeImageTest and JVM mode tests in the same test run. This is not allowed.

我正在尝试构建原生图像,并将扩展添加到我的简单测试用例中,因为文档引用了https://quarkus.io/guides/building-native-image。但是,当我创建一个扩展我的基础并添加的新测试类时,@NativeImageTest我得到了上面的异常。我没有弄乱生成 pom,所以不确定我是否缺少步骤。如果我执行也会发生这种情况./mvnw package -Pnative -Dquarkus.native.container-build=true

4

1 回答 1

0

请查看文档https://quarkus.io/guides/building-native-image# exclude -tests-when-running-as-a-native-executable并尝试将@DisabledOnNativeImage注释添加到您扩展本机的测试中测试从。

于 2020-04-09T19:06:37.393 回答