From 34878b88d9fd1f728ab2228492edf1384797f1ff Mon Sep 17 00:00:00 2001 From: Trevor Bergeron Date: Fri, 20 Mar 2026 19:54:34 +0000 Subject: [PATCH] test: Remove ingress setting all test --- .../large/functions/test_remote_function.py | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tests/system/large/functions/test_remote_function.py b/tests/system/large/functions/test_remote_function.py index a631d97a2e..1ab4987302 100644 --- a/tests/system/large/functions/test_remote_function.py +++ b/tests/system/large/functions/test_remote_function.py @@ -2682,25 +2682,6 @@ def square(x: int) -> int: ) -@pytest.mark.flaky(retries=2, delay=120) -def test_remote_function_ingress_settings_w_all(session): - ingress_settings_args = {"cloud_function_ingress_settings": "all"} - - with pytest.raises( - google.api_core.exceptions.FailedPrecondition, - match="400.*allowedIngress violated", - ): - - def square(x: int) -> int: - return x * x - - session.remote_function( - reuse=False, - cloud_function_service_account="default", - **ingress_settings_args, - )(square) - - @pytest.mark.flaky(retries=2, delay=120) def test_remote_function_ingress_settings_unsupported(session): with pytest.raises(