@@ -255,11 +255,13 @@ def test_gitlab_publisher_admin_details_with_environment(self):
255255 namespace = "fakeowner" ,
256256 workflow_filepath = "subfolder/fakeworkflow.yml" ,
257257 environment = "fakeenv" ,
258+ issuer_url = "https://gitlab.com" ,
258259 )
259260
260261 assert publisher .admin_details == [
261262 ("Project" , "fakeowner/fakerepo" ),
262263 ("Workflow" , "subfolder/fakeworkflow.yml" ),
264+ ("Issuer URL" , "https://gitlab.com" ),
263265 ("Environment" , "fakeenv" ),
264266 ]
265267
@@ -269,11 +271,13 @@ def test_gitlab_publisher_admin_details_without_environment(self):
269271 namespace = "fakeowner" ,
270272 workflow_filepath = "subfolder/fakeworkflow.yml" ,
271273 environment = "" ,
274+ issuer_url = "https://gitlab.com" ,
272275 )
273276
274277 assert publisher .admin_details == [
275278 ("Project" , "fakeowner/fakerepo" ),
276279 ("Workflow" , "subfolder/fakeworkflow.yml" ),
280+ ("Issuer URL" , "https://gitlab.com" ),
277281 ]
278282
279283 def test_gitlab_publisher_unaccounted_claims (self , monkeypatch ):
@@ -668,6 +672,7 @@ def test_gitlab_publisher_duplicates_cant_be_created(self, db_request):
668672 namespace = "repository_owner" ,
669673 workflow_filepath = "subfolder/worflow_filename.yml" ,
670674 environment = "" ,
675+ issuer_url = "https://gitlab.com" ,
671676 )
672677
673678 db_request .db .add (publisher1 )
@@ -678,6 +683,7 @@ def test_gitlab_publisher_duplicates_cant_be_created(self, db_request):
678683 namespace = "repository_owner" ,
679684 workflow_filepath = "subfolder/worflow_filename.yml" ,
680685 environment = "" ,
686+ issuer_url = "https://gitlab.com" ,
681687 )
682688 db_request .db .add (publisher2 )
683689
@@ -827,6 +833,7 @@ def test_exists(self, db_request, exists_in_db):
827833 namespace = "repository_owner" ,
828834 workflow_filepath = "subfolder/worflow_filename.yml" ,
829835 environment = "" ,
836+ issuer_url = "https://gitlab.com" ,
830837 )
831838
832839 if exists_in_db :
0 commit comments