Build time optimization (#1553)
* Add integration tests * Optimize build
This commit is contained in:
committed by
GitHub
parent
4b98413c4a
commit
760692b8eb
@@ -17,6 +17,18 @@
|
||||
<target>1.8</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/*IntegrationTest.java</exclude>
|
||||
<exclude>**/*LongRunningUnitTest.java</exclude>
|
||||
<exclude>**/*ManualTest.java</exclude>
|
||||
</excludes>
|
||||
<testFailureIgnore>true</testFailureIgnore>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
@@ -47,4 +59,5 @@
|
||||
<hamcrest.version>1.3</hamcrest.version>
|
||||
</properties>
|
||||
|
||||
|
||||
</project>
|
||||
+1
-1
@@ -14,7 +14,7 @@ import java.util.stream.IntStream;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
public class RxJavaBackpressureTest {
|
||||
public class RxJavaBackpressureLongRunningUnitTest {
|
||||
|
||||
@Test
|
||||
public void givenColdObservable_shouldNotThrowException() {
|
||||
Reference in New Issue
Block a user