From 81eff917607323b17a2f63f43608a606bf941fb1 Mon Sep 17 00:00:00 2001 From: Dirk Kulawiak Date: Mon, 25 Nov 2024 19:08:40 +0100 Subject: [PATCH] disable azure auth tests --- integration/test_auth.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/integration/test_auth.py b/integration/test_auth.py index 758580816..57eb4fae7 100644 --- a/integration/test_auth.py +++ b/integration/test_auth.py @@ -36,13 +36,13 @@ def test_no_auth_provided() -> None: @pytest.mark.parametrize( "name,env_variable_name,port,scope", [ - ("azure", "AZURE_CLIENT_SECRET", AZURE_PORT, None), - ( - "azure", - "AZURE_CLIENT_SECRET", - AZURE_PORT, - "4706508f-30c2-469b-8b12-ad272b3de864/.default", - ), + # ("azure", "AZURE_CLIENT_SECRET", AZURE_PORT, None), + # ( + # "azure", + # "AZURE_CLIENT_SECRET", + # AZURE_PORT, + # "4706508f-30c2-469b-8b12-ad272b3de864/.default", + # ), expired ("okta", "OKTA_CLIENT_SECRET", OKTA_PORT_CC, "some_scope"), ], )