@@ -66,14 +66,14 @@ def test_authentication_client_credentials(
6666@pytest .mark .parametrize (
6767 "name,user,env_variable_name,port,scope,warning" ,
6868 [
69- # ( # WCS keycloak times out too often
70- # "WCS",
71- # "ms_2d0e007e7136de11d5f29fce7a53dae219a51458@existiert.net ",
72- # "WCS_DUMMY_CI_PW",
73- # WCS_PORT,
74- # None,
75- # False,
76- # ),
69+ ( # WCS keycloak times out too often
70+ "WCS" ,
71+ "oidc-test-user@weaviate.io " ,
72+ "WCS_DUMMY_CI_PW" ,
73+ WCS_PORT ,
74+ None ,
75+ False ,
76+ ),
7777 (
7878 "okta" ,
7979 "test@test.de" ,
@@ -168,12 +168,12 @@ def _get_access_token(url: str, user: str, pw: str) -> Dict[str, str]:
168168@pytest .mark .parametrize (
169169 "name,user,env_variable_name,port" ,
170170 [
171- # ( # WCS keycloak times out too often
172- # "WCS",
173- # "ms_2d0e007e7136de11d5f29fce7a53dae219a51458@existiert.net ",
174- # "WCS_DUMMY_CI_PW",
175- # WCS_PORT,
176- # ),
171+ ( # WCS keycloak times out too often
172+ "WCS" ,
173+ "oidc-test-user@weaviate.io " ,
174+ "WCS_DUMMY_CI_PW" ,
175+ WCS_PORT ,
176+ ),
177177 (
178178 "okta" ,
179179 "test@test.de" ,
@@ -200,7 +200,7 @@ def test_authentication_with_bearer_token(
200200 refresh_token = token ["refresh_token" ],
201201 )
202202 with weaviate .connect_to_local (port = port , auth_credentials = auth ) as client :
203- client .collections .list_all ( )
203+ client .collections .exists ( "something" )
204204
205205
206206def test_authentication_with_bearer_token_no_refresh () -> None :
0 commit comments