File tree Expand file tree Collapse file tree 2 files changed +1
-31
lines changed Expand file tree Collapse file tree 2 files changed +1
-31
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,4 @@ UPDATE_EXISTING = ""
21
21
GH_APP_ID = ""
22
22
GH_INSTALLATION_ID = ""
23
23
GH_PRIVATE_KEY = ""
24
+ GITHUB_APP_ENTERPRISE_ONLY = ""
Original file line number Diff line number Diff line change @@ -501,37 +501,6 @@ def test_get_env_vars_auth_with_github_app_installation(self):
501
501
)
502
502
def test_get_env_vars_auth_with_github_app_installation_missing_inputs (self ):
503
503
"""Test that an error is raised there are missing inputs for the gh app"""
504
- expected_result = (
505
- "my_organization" ,
506
- [],
507
- 12345 ,
508
- None ,
509
- b"" ,
510
- False ,
511
- "" ,
512
- "" ,
513
- [],
514
- "pull" ,
515
- "Enable Dependabot" ,
516
- "Dependabot could be enabled for this repository. Please enable it by merging "
517
- "this pull request so that we can keep our dependencies up to date and "
518
- "secure." ,
519
- "" ,
520
- False ,
521
- "Create/Update dependabot.yaml" ,
522
- None ,
523
- False ,
524
- ["internal" , "private" , "public" ],
525
- None , # batch_size
526
- True , # enable_security_updates
527
- [], # exempt_ecosystems
528
- False , # update_existing
529
- {}, # repo_specific_exemptions
530
- "weekly" , # schedule
531
- "" , # schedule_day
532
- None , # team_name
533
- [], # labels
534
- )
535
504
with self .assertRaises (ValueError ) as context_manager :
536
505
get_env_vars (True )
537
506
the_exception = context_manager .exception
You can’t perform that action at this time.
0 commit comments