Skip to content

Commit 92e20b6

Browse files
authored
fix(compute): ignore reservation ITs (#9991)
1 parent 8622af1 commit 92e20b6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

compute/cloud-client/src/test/java/compute/reservation/CrudOperationsReservationIT.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import java.util.concurrent.TimeUnit;
3131
import java.util.concurrent.TimeoutException;
3232
import org.junit.Assert;
33+
import org.junit.Ignore;
3334
import org.junit.jupiter.api.AfterAll;
3435
import org.junit.jupiter.api.Assertions;
3536
import org.junit.jupiter.api.BeforeAll;
@@ -75,6 +76,7 @@ public static void cleanup()
7576
}
7677

7778
@Test
79+
@Ignore("Issue #9989")
7880
public void testGetReservation()
7981
throws IOException {
8082
Reservation reservation = GetReservation.getReservation(
@@ -85,6 +87,7 @@ public void testGetReservation()
8587
}
8688

8789
@Test
90+
@Ignore("Issue #9989")
8891
public void testListReservation() throws IOException {
8992
List<Reservation> reservations =
9093
ListReservations.listReservations(PROJECT_ID, ZONE);
@@ -94,6 +97,7 @@ public void testListReservation() throws IOException {
9497
}
9598

9699
@Test
100+
@Ignore("Issue #9989")
97101
public void testUpdateVmsForReservation()
98102
throws IOException, ExecutionException, InterruptedException, TimeoutException {
99103
int newNumberOfVms = 1;

0 commit comments

Comments
 (0)