Skip to content

Commit

Permalink
disable flaky integration tests (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
wlfgang committed Oct 6, 2022
1 parent 66fab42 commit a73b6a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.Assert;
import org.testng.annotations.Ignore;
import org.testng.annotations.Test;

/** Integration test for {@link VideoFileInput} and {@link VideoFileOutput} */
@Test(groups = {"integration-tests"})
@Ignore
public class VideoFileInputOutputIT {
private static final Logger logger = LoggerFactory.getLogger(VideoFileInputOutputIT.class);
private final double sensorLatitude = 42.4036;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@
import org.slf4j.LoggerFactory;
import org.testng.Assert;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Ignore;
import org.testng.annotations.Test;

/** Integration test for {@link VideoStreamInput} and {@link VideoStreamOutput} */
@Ignore
@Test(groups = {"integration-tests"})
public class VideoStreamInputOutputIT {
private static Logger logger = LoggerFactory.getLogger(VideoStreamInputOutputIT.class);
Expand Down

0 comments on commit a73b6a3

Please sign in to comment.