Skip to content

Commit 6b0509b

Browse files
test: Remove ingress setting all test (#2528)
1 parent 460dbdc commit 6b0509b

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

tests/system/large/functions/test_remote_function.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2682,25 +2682,6 @@ def square(x: int) -> int:
26822682
)
26832683

26842684

2685-
@pytest.mark.flaky(retries=2, delay=120)
2686-
def test_remote_function_ingress_settings_w_all(session):
2687-
ingress_settings_args = {"cloud_function_ingress_settings": "all"}
2688-
2689-
with pytest.raises(
2690-
google.api_core.exceptions.FailedPrecondition,
2691-
match="400.*allowedIngress violated",
2692-
):
2693-
2694-
def square(x: int) -> int:
2695-
return x * x
2696-
2697-
session.remote_function(
2698-
reuse=False,
2699-
cloud_function_service_account="default",
2700-
**ingress_settings_args,
2701-
)(square)
2702-
2703-
27042685
@pytest.mark.flaky(retries=2, delay=120)
27052686
def test_remote_function_ingress_settings_unsupported(session):
27062687
with pytest.raises(

0 commit comments

Comments
 (0)