Skip to content

Commit

Permalink
Disable VariousConfigurationSourcesTestIT test because #quarkus/17653
Browse files Browse the repository at this point in the history
Adding external properties on Native make the app fail to start. Reported by quarkusio/quarkus#17653
  • Loading branch information
Sgitario committed Jun 3, 2021
1 parent 19ce4e0 commit f2981d7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions 022-quarkus-properties-config-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
<profiles>
<profile>
<id>native</id>
<!-- TODO: Can't add configsource.properties because of https://github.com/quarkusio/quarkus/issues/17653
<activation>
<property>
<name>native</name>
</property>
</activation>
-->
<properties>
<quarkus.package.type>native</quarkus.package.type>
<quarkus.native.additional-build-args>-H:ResourceConfigurationFiles=resources-config.json</quarkus.native.additional-build-args>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
package io.quarkus.qe.config;

import org.junit.jupiter.api.Disabled;

import io.quarkus.test.junit.NativeImageTest;

@Disabled("TODO: Can't add configsource.properties because of https://github.com/quarkusio/quarkus/issues/17653")
@NativeImageTest
public class VariousConfigurationSourcesTestIT extends VariousConfigurationSourcesTest {

Expand Down

0 comments on commit f2981d7

Please sign in to comment.