Skip to content
This repository was archived by the owner on Oct 24, 2020. It is now read-only.

Commit 0550594

Browse files
committed
Always run all tests because now QuarkusDevModeTest doesn't throw NullPointerException in IntelliJ
See also quarkusio/quarkus#10554
1 parent b79b60e commit 0550594

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

deployment/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@
8888
<configuration>
8989
<systemPropertyVariables>
9090
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
91-
<doma.profile>${doma.profile}</doma.profile>
9291
</systemPropertyVariables>
9392
</configuration>
9493
</plugin>

deployment/src/test/java/org/seasar/doma/quarkus/deployment/HotReplacementTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import org.junit.jupiter.api.AfterAll;
1111
import org.junit.jupiter.api.BeforeAll;
1212
import org.junit.jupiter.api.Test;
13-
import org.junit.jupiter.api.condition.EnabledIfSystemProperty;
1413
import org.junit.jupiter.api.extension.RegisterExtension;
1514

1615
public class HotReplacementTest {
@@ -44,7 +43,6 @@ public static void tearDownPort() {
4443
}
4544

4645
@Test
47-
@EnabledIfSystemProperty(named = "doma.profile", matches = "release")
4846
public void sql() {
4947
RestAssured.when().get("/hot/sql").then().body(is("select\n*\nfrom\nemployee\n"));
5048
runner.modifyResourceFile(
@@ -53,7 +51,6 @@ public void sql() {
5351
}
5452

5553
@Test
56-
@EnabledIfSystemProperty(named = "doma.profile", matches = "release")
5754
public void script() {
5855
RestAssured.when().get("/hot/script").then().body(is("create table employee (\n id int\n)\n"));
5956
runner.modifyResourceFile(

pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -65,23 +65,11 @@
6565
</dependencyManagement>
6666

6767
<profiles>
68-
<profile>
69-
<activation>
70-
<activeByDefault>true</activeByDefault>
71-
</activation>
72-
<id>default</id>
73-
<properties>
74-
<doma.profile>default</doma.profile>
75-
</properties>
76-
</profile>
7768
<profile>
7869
<activation>
7970
<activeByDefault>false</activeByDefault>
8071
</activation>
8172
<id>release</id>
82-
<properties>
83-
<doma.profile>release</doma.profile>
84-
</properties>
8573
<build>
8674
<plugins>
8775
<plugin>

0 commit comments

Comments
 (0)