Ignore Exponential Moving Average Tests
https://build.spring.io/browse/INT-SI43X-6/ Since Exponential Moving Average algorithm is fully based on the time in between events, it is very difficult to reach the stable tests. All of them used to fail from time to time on the slow CI server. Mark all Exponential Moving Average Tests with `@Ignore`. The manual testing is required in case of some changes. **Cherry-pick to 4.3.x**
This commit is contained in:
@@ -38,6 +38,7 @@ import org.springframework.util.StopWatch;
|
||||
* @author Gary Russell
|
||||
* @author Steven Swor
|
||||
*/
|
||||
@Ignore("Very sensitive to the time. Don't forget to test after some changes.")
|
||||
public class ExponentialMovingAverageRateTests {
|
||||
|
||||
private final static Log logger = LogFactory.getLog(ExponentialMovingAverageRateTests.class);
|
||||
|
||||
@@ -36,6 +36,7 @@ import org.springframework.integration.test.util.TestUtils;
|
||||
* @author Artem Bilan
|
||||
* @author Steven Swor
|
||||
*/
|
||||
@Ignore("Very sensitive to the time. Don't forget to test after some changes.")
|
||||
public class ExponentialMovingAverageRatioTests {
|
||||
|
||||
private final ExponentialMovingAverageRatio history = new ExponentialMovingAverageRatio(
|
||||
|
||||
@@ -26,8 +26,8 @@ import org.junit.Test;
|
||||
* @author Dave Syer
|
||||
* @author Artem Bilan
|
||||
* @author Gary Russell
|
||||
*
|
||||
*/
|
||||
@Ignore("Very sensitive to the time. Don't forget to test after some changes.")
|
||||
public class ExponentialMovingAverageTests {
|
||||
|
||||
private final ExponentialMovingAverage history = new ExponentialMovingAverage(10);
|
||||
|
||||
Reference in New Issue
Block a user