Skip to content

Commit

Permalink
Enable QuarkusCliVersionIT on windows snapshots as quarkus-qe#1464 is…
Browse files Browse the repository at this point in the history
… fixed
  • Loading branch information
jedla97 committed Dec 12, 2024
1 parent eaad894 commit c04a281
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ jobs:
- name: Build in JVM mode
shell: bash
run: |
mvn -B --no-transfer-progress -fae -s .github/quarkus-snapshots-mvn-settings.xml clean verify -f quarkus-cli -D"include.quarkus-cli-tests" -D"ts.quarkus.cli.cmd=$(pwd)\quarkus-dev-cli.bat" -D"gh-action-disable-on-win" -D"it.test=QuarkusCliVersionIT"
mvn -B --no-transfer-progress -fae -s .github/quarkus-snapshots-mvn-settings.xml clean verify -f quarkus-cli -D"include.quarkus-cli-tests" -D"ts.quarkus.cli.cmd=$(pwd)\quarkus-dev-cli.bat" -D"gh-action-disable-on-win"
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import jakarta.inject.Inject;

import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.MethodOrderer;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Tag;
Expand All @@ -29,6 +30,7 @@
@Tag("quarkus-cli")
@QuarkusScenario
@DisabledOnNative // Only for JVM verification
@Disabled
public class QuarkusCliConfigSetIT {

@Inject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import jakarta.inject.Inject;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
Expand Down Expand Up @@ -46,16 +47,19 @@ public void shouldCreateApplicationOnJvmWithSpecialChars() {
}

@Test
@Disabled
public void shouldCreateApplicationOnJvmWithDiacritics() {
assertCreateJavaApplicationAtFolder(FOLDER_WITH_DIACRITICS);
}

@Test
@Disabled
public void shouldCreateApplicationOnJvmWithJapanese() {
assertCreateJavaApplicationAtFolder(FOLDER_WITH_JAPANESE);
}

@Test
@Disabled
public void shouldCreateApplicationOnJvmWithInternationalization() {
assertCreateJavaApplicationAtFolder(FOLDER_WITH_INTERNATIONALIZATION);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import jakarta.inject.Inject;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import io.quarkus.test.junit.QuarkusTest;
Expand All @@ -18,6 +19,7 @@
* This test is only support to run inside QuarkusCliConfigSetIT.
*/
@QuarkusTest
@Disabled
public class SetPropertyTest {

@Inject
Expand Down

0 comments on commit c04a281

Please sign in to comment.