Skip to content

Commit 8dcceb4

Browse files
author
Vali (Vasile Baluta)
committed
disable running of flow test in pom.xml
1 parent cce49d3 commit 8dcceb4

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

pom.xml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<artifactId>spring-boot-starter-parent</artifactId>
1111
<version>1.5.2.RELEASE</version>
1212
</parent>
13-
13+
1414
<properties>
1515
<java.version>1.8</java.version>
1616
<plugin-version>0.8.6</plugin-version>
@@ -46,7 +46,7 @@
4646
<groupId>org.springframework.boot</groupId>
4747
<artifactId>spring-boot-starter-web</artifactId>
4848
</dependency>
49-
49+
5050
<dependency>
5151
<groupId>org.springframework.boot</groupId>
5252
<artifactId>spring-boot-starter-security</artifactId>
@@ -167,8 +167,8 @@
167167
<groupId>org.springframework.boot</groupId>
168168
<artifactId>spring-boot-maven-plugin</artifactId>
169169
</plugin>
170-
171-
<!-- PhoenixNAP RAML Code Generator plugin used to generate sources
170+
171+
<!-- PhoenixNAP RAML Code Generator plugin used to generate sources
172172
from raml -->
173173
<plugin>
174174
<groupId>com.phoenixnap.oss</groupId>
@@ -230,6 +230,16 @@
230230
</execution>
231231
</executions>
232232
</plugin>
233+
<plugin>
234+
<groupId>org.apache.maven.plugins</groupId>
235+
<artifactId>maven-surefire-plugin</artifactId>
236+
<version>2.20</version>
237+
<configuration>
238+
<excludes>
239+
<exclude>**/FlowTest.java</exclude>
240+
</excludes>
241+
</configuration>
242+
</plugin>
233243
</plugins>
234244
</build>
235245
</project>

src/test/java/com/ericsson/ei/flowtests/FlowTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public static void tearDown() throws Exception {
146146
}
147147

148148
@Test
149-
public void test() {
149+
public void flowTest() {
150150
try {
151151
String queueName = rmqHandler.getQueueName();
152152
Channel channel = conn.createChannel();

0 commit comments

Comments
 (0)