mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 19:32:11 +08:00
[CI] skip failing java tests (#13702)
This commit is contained in:
@@ -9,7 +9,9 @@ import java.util.concurrent.TimeUnit;
|
||||
import org.testng.Assert;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
@Test(groups = {"cluster"})
|
||||
@Test(
|
||||
groups = {"cluster"},
|
||||
enabled = false)
|
||||
public class ActorRestartTest extends BaseTest {
|
||||
|
||||
public static class Counter {
|
||||
|
||||
@@ -15,7 +15,9 @@ import java.util.concurrent.TimeUnit;
|
||||
import org.testng.Assert;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
@Test(groups = {"cluster"})
|
||||
@Test(
|
||||
groups = {"cluster"},
|
||||
enabled = false)
|
||||
public class ExitActorTest extends BaseTest {
|
||||
|
||||
private static class ExitingActor {
|
||||
|
||||
@@ -17,7 +17,9 @@ import java.util.stream.Collectors;
|
||||
import org.testng.Assert;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
@Test(groups = {"cluster"})
|
||||
@Test(
|
||||
groups = {"cluster"},
|
||||
enabled = false)
|
||||
public class MultiDriverTest extends BaseTest {
|
||||
|
||||
private static final int DRIVER_COUNT = 10;
|
||||
|
||||
@@ -83,7 +83,9 @@ public class PlacementGroupTest extends BaseTest {
|
||||
Assert.assertEquals(placementGroupRes.getStrategy(), expectPlacementGroup.getStrategy());
|
||||
}
|
||||
|
||||
@Test(groups = {"cluster"})
|
||||
@Test(
|
||||
groups = {"cluster"},
|
||||
enabled = false)
|
||||
public void testRemovePlacementGroup() {
|
||||
PlacementGroupTestUtils.createNameSpecifiedSimpleGroup(
|
||||
"CPU", 1, PlacementStrategy.PACK, 1.0, "first_placement_group");
|
||||
|
||||
Reference in New Issue
Block a user