Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable PingTopologyTests and StatsTopologyTests #5564

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.ArrayList;
Expand All @@ -84,6 +85,7 @@
import java.util.UUID;
import java.util.stream.Collectors;

@Disabled("Disabled due to flaky behaviour. See https://github.com/telstra/open-kilda/issues/5563")
public class PingTopologyTest extends AbstractStormTest {
public static final String COMPONENT_NAME = "ping";
public static final String RUN_ID = "blue";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
import org.apache.storm.generated.StormTopology;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;

import java.io.IOException;
import java.util.ArrayList;
Expand All @@ -68,6 +69,7 @@
import java.util.stream.Collectors;

@Slf4j
@Disabled("Disabled due to flaky behaviour. See https://github.com/telstra/open-kilda/issues/5563")
public class StatsTopologyBaseTest extends AbstractStormTest {

protected static final long timestamp = System.currentTimeMillis();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.Collections;
Expand All @@ -66,6 +67,7 @@
import java.util.concurrent.TimeUnit;

@Slf4j
@Disabled("Disabled due to flaky behaviour. See https://github.com/telstra/open-kilda/issues/5563")
public class StatsTopologyFlowTest extends StatsTopologyBaseTest {

@BeforeAll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.Collections;
Expand All @@ -67,6 +68,7 @@
import java.util.stream.Collectors;

@Slf4j
@Disabled("Disabled due to flaky behaviour. See https://github.com/telstra/open-kilda/issues/5563")
public class StatsTopologyHaFlowTest extends StatsTopologyBaseTest {

@BeforeAll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.Arrays;
Expand All @@ -55,6 +56,7 @@
import java.util.stream.IntStream;

@Slf4j
@Disabled("Disabled due to flaky behaviour. See https://github.com/telstra/open-kilda/issues/5563")
public class StatsTopologySwitchTest extends StatsTopologyBaseTest {

@BeforeAll
Expand Down
Loading