PyGithub 2.5.0__tar.gz → 2.6.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pygithub-2.6.1/.github/release.yml +19 -0
- pygithub-2.6.1/.github/workflows/ci.yml +76 -0
- pygithub-2.6.1/.github/workflows/pypi-release.yml +29 -0
- pygithub-2.6.1/.github/workflows/test-results.yml +33 -0
- pygithub-2.6.1/PKG-INFO +103 -0
- pygithub-2.6.1/PyGithub.egg-info/PKG-INFO +103 -0
- pygithub-2.6.1/PyGithub.egg-info/SOURCES.txt +1293 -0
- pygithub-2.6.1/doc/changes.rst +1916 -0
- pygithub-2.6.1/github/AccessToken.py +158 -0
- pygithub-2.6.1/github/AdvisoryBase.py +157 -0
- pygithub-2.6.1/github/AdvisoryCredit.py +126 -0
- pygithub-2.6.1/github/AdvisoryCreditDetailed.py +104 -0
- pygithub-2.6.1/github/AdvisoryVulnerability.py +190 -0
- pygithub-2.6.1/github/AdvisoryVulnerabilityPackage.py +91 -0
- pygithub-2.6.1/github/ApplicationOAuth.py +198 -0
- pygithub-2.6.1/github/Artifact.py +172 -0
- pygithub-2.6.1/github/Auth.py +551 -0
- pygithub-2.6.1/github/AuthenticatedUser.py +1167 -0
- pygithub-2.6.1/github/Autolink.py +92 -0
- pygithub-2.6.1/github/Branch.py +657 -0
- pygithub-2.6.1/github/BranchProtection.py +219 -0
- pygithub-2.6.1/github/CVSS.py +80 -0
- pygithub-2.6.1/github/CheckRun.py +298 -0
- pygithub-2.6.1/github/CheckRunAnnotation.py +123 -0
- pygithub-2.6.1/github/CheckRunOutput.py +95 -0
- pygithub-2.6.1/github/CheckSuite.py +313 -0
- pygithub-2.6.1/github/Clones.py +95 -0
- pygithub-2.6.1/github/CodeScanAlert.py +160 -0
- pygithub-2.6.1/github/CodeScanAlertInstance.py +115 -0
- pygithub-2.6.1/github/CodeScanAlertInstanceLocation.py +95 -0
- pygithub-2.6.1/github/CodeScanRule.py +98 -0
- pygithub-2.6.1/github/CodeScanTool.py +87 -0
- pygithub-2.6.1/github/CodeSecurityConfig.py +217 -0
- pygithub-2.6.1/github/CodeSecurityConfigRepository.py +68 -0
- pygithub-2.6.1/github/Commit.py +370 -0
- pygithub-2.6.1/github/CommitCombinedStatus.py +114 -0
- pygithub-2.6.1/github/CommitComment.py +253 -0
- pygithub-2.6.1/github/CommitStats.py +74 -0
- pygithub-2.6.1/github/CommitStatus.py +148 -0
- pygithub-2.6.1/github/ContentFile.py +280 -0
- pygithub-2.6.1/github/Copilot.py +96 -0
- pygithub-2.6.1/github/CopilotSeat.py +96 -0
- pygithub-2.6.1/github/DefaultCodeSecurityConfig.py +84 -0
- pygithub-2.6.1/github/DependabotAlert.py +173 -0
- pygithub-2.6.1/github/DependabotAlertAdvisory.py +73 -0
- pygithub-2.6.1/github/DependabotAlertDependency.py +80 -0
- pygithub-2.6.1/github/DependabotAlertVulnerability.py +83 -0
- pygithub-2.6.1/github/Deployment.py +298 -0
- pygithub-2.6.1/github/DeploymentStatus.py +198 -0
- pygithub-2.6.1/github/Enterprise.py +96 -0
- pygithub-2.6.1/github/EnterpriseConsumedLicenses.py +109 -0
- pygithub-2.6.1/github/Environment.py +299 -0
- pygithub-2.6.1/github/EnvironmentDeploymentBranchPolicy.py +80 -0
- pygithub-2.6.1/github/EnvironmentProtectionRule.py +108 -0
- pygithub-2.6.1/github/EnvironmentProtectionRuleReviewer.py +101 -0
- pygithub-2.6.1/github/Event.py +126 -0
- pygithub-2.6.1/github/File.py +138 -0
- pygithub-2.6.1/github/Gist.py +335 -0
- pygithub-2.6.1/github/GistComment.py +150 -0
- pygithub-2.6.1/github/GistFile.py +102 -0
- pygithub-2.6.1/github/GistHistoryState.py +231 -0
- pygithub-2.6.1/github/GitAuthor.py +90 -0
- pygithub-2.6.1/github/GitBlob.py +104 -0
- pygithub-2.6.1/github/GitCommit.py +206 -0
- pygithub-2.6.1/github/GitCommitVerification.py +99 -0
- pygithub-2.6.1/github/GitObject.py +80 -0
- pygithub-2.6.1/github/GitRef.py +119 -0
- pygithub-2.6.1/github/GitRelease.py +432 -0
- pygithub-2.6.1/github/GitReleaseAsset.py +202 -0
- pygithub-2.6.1/github/GitTag.py +141 -0
- pygithub-2.6.1/github/GitTree.py +109 -0
- pygithub-2.6.1/github/GitTreeElement.py +100 -0
- pygithub-2.6.1/github/GithubApp.py +217 -0
- pygithub-2.6.1/github/GithubIntegration.py +342 -0
- pygithub-2.6.1/github/GithubObject.py +594 -0
- pygithub-2.6.1/github/GitignoreTemplate.py +76 -0
- pygithub-2.6.1/github/GlobalAdvisory.py +139 -0
- pygithub-2.6.1/github/Hook.py +226 -0
- pygithub-2.6.1/github/HookDelivery.py +239 -0
- pygithub-2.6.1/github/HookResponse.py +79 -0
- pygithub-2.6.1/github/Installation.py +280 -0
- pygithub-2.6.1/github/InstallationAuthorization.py +136 -0
- pygithub-2.6.1/github/Invitation.py +155 -0
- pygithub-2.6.1/github/Issue.py +673 -0
- pygithub-2.6.1/github/IssueComment.py +289 -0
- pygithub-2.6.1/github/IssueEvent.py +266 -0
- pygithub-2.6.1/github/IssuePullRequest.py +95 -0
- pygithub-2.6.1/github/Label.py +158 -0
- pygithub-2.6.1/github/License.py +167 -0
- pygithub-2.6.1/github/MainClass.py +1058 -0
- pygithub-2.6.1/github/Membership.py +131 -0
- pygithub-2.6.1/github/MergedUpstream.py +68 -0
- pygithub-2.6.1/github/Migration.py +266 -0
- pygithub-2.6.1/github/Milestone.py +243 -0
- pygithub-2.6.1/github/NamedEnterpriseUser.py +204 -0
- pygithub-2.6.1/github/NamedUser.py +693 -0
- pygithub-2.6.1/github/Notification.py +175 -0
- pygithub-2.6.1/github/NotificationSubject.py +93 -0
- pygithub-2.6.1/github/Organization.py +1997 -0
- pygithub-2.6.1/github/OrganizationCustomProperty.py +183 -0
- pygithub-2.6.1/github/OrganizationDependabotAlert.py +58 -0
- pygithub-2.6.1/github/OrganizationSecret.py +138 -0
- pygithub-2.6.1/github/OrganizationVariable.py +134 -0
- pygithub-2.6.1/github/PaginatedList.py +441 -0
- pygithub-2.6.1/github/Path.py +98 -0
- pygithub-2.6.1/github/Permissions.py +107 -0
- pygithub-2.6.1/github/Plan.py +103 -0
- pygithub-2.6.1/github/Project.py +265 -0
- pygithub-2.6.1/github/ProjectCard.py +225 -0
- pygithub-2.6.1/github/ProjectColumn.py +221 -0
- pygithub-2.6.1/github/PublicKey.py +136 -0
- pygithub-2.6.1/github/PullRequest.py +1141 -0
- pygithub-2.6.1/github/PullRequestComment.py +379 -0
- pygithub-2.6.1/github/PullRequestPart.py +107 -0
- pygithub-2.6.1/github/PullRequestReview.py +160 -0
- pygithub-2.6.1/github/Rate.py +99 -0
- pygithub-2.6.1/github/RateLimit.py +166 -0
- pygithub-2.6.1/github/Referrer.py +90 -0
- pygithub-2.6.1/github/RepoCodeSecurityConfig.py +87 -0
- pygithub-2.6.1/github/Repository.py +4656 -0
- pygithub-2.6.1/github/RepositoryAdvisory.py +424 -0
- pygithub-2.6.1/github/RepositoryDiscussionCategory.py +142 -0
- pygithub-2.6.1/github/RepositoryKey.py +152 -0
- pygithub-2.6.1/github/RepositoryPreferences.py +80 -0
- pygithub-2.6.1/github/Requester.py +1317 -0
- pygithub-2.6.1/github/RequiredPullRequestReviews.py +146 -0
- pygithub-2.6.1/github/RequiredStatusChecks.py +92 -0
- pygithub-2.6.1/github/Secret.py +124 -0
- pygithub-2.6.1/github/SecurityAndAnalysis.py +141 -0
- pygithub-2.6.1/github/SecurityAndAnalysisFeature.py +70 -0
- pygithub-2.6.1/github/SelfHostedActionsRunner.py +113 -0
- pygithub-2.6.1/github/SourceImport.py +255 -0
- pygithub-2.6.1/github/Stargazer.py +87 -0
- pygithub-2.6.1/github/StatsCodeFrequency.py +79 -0
- pygithub-2.6.1/github/StatsCommitActivity.py +82 -0
- pygithub-2.6.1/github/StatsContributor.py +124 -0
- pygithub-2.6.1/github/StatsParticipation.py +76 -0
- pygithub-2.6.1/github/StatsPunchCard.py +72 -0
- pygithub-2.6.1/github/Tag.py +106 -0
- pygithub-2.6.1/github/Team.py +521 -0
- pygithub-2.6.1/github/TimelineEvent.py +154 -0
- pygithub-2.6.1/github/TimelineEventSource.py +80 -0
- pygithub-2.6.1/github/Topic.py +175 -0
- pygithub-2.6.1/github/Traffic.py +93 -0
- pygithub-2.6.1/github/UserKey.py +130 -0
- pygithub-2.6.1/github/Variable.py +143 -0
- pygithub-2.6.1/github/View.py +95 -0
- pygithub-2.6.1/github/Workflow.py +257 -0
- pygithub-2.6.1/github/WorkflowJob.py +243 -0
- pygithub-2.6.1/github/WorkflowRun.py +448 -0
- pygithub-2.6.1/github/__init__.py +112 -0
- pygithub-2.6.1/requirements/test.txt +5 -0
- pygithub-2.6.1/tests/ApplicationOAuth.py +240 -0
- pygithub-2.6.1/tests/AuthenticatedUser.py +800 -0
- pygithub-2.6.1/tests/Authentication.py +366 -0
- pygithub-2.6.1/tests/Branch.py +335 -0
- pygithub-2.6.1/tests/BranchProtection.py +81 -0
- pygithub-2.6.1/tests/CheckRun.py +346 -0
- pygithub-2.6.1/tests/CheckSuite.py +176 -0
- pygithub-2.6.1/tests/Commit.py +167 -0
- pygithub-2.6.1/tests/CommitComment.py +101 -0
- pygithub-2.6.1/tests/CommitStatus.py +87 -0
- pygithub-2.6.1/tests/ConditionalRequestUpdate.py +57 -0
- pygithub-2.6.1/tests/Connection.py +113 -0
- pygithub-2.6.1/tests/ContentFile.py +89 -0
- pygithub-2.6.1/tests/Copilot.py +72 -0
- pygithub-2.6.1/tests/DependabotAlert.py +194 -0
- pygithub-2.6.1/tests/Deployment.py +99 -0
- pygithub-2.6.1/tests/DeploymentStatus.py +116 -0
- pygithub-2.6.1/tests/Environment.py +247 -0
- pygithub-2.6.1/tests/Exceptions.py +169 -0
- pygithub-2.6.1/tests/ExposeAllAttributes.py +169 -0
- pygithub-2.6.1/tests/Framework.py +527 -0
- pygithub-2.6.1/tests/Gist.py +167 -0
- pygithub-2.6.1/tests/GistComment.py +77 -0
- pygithub-2.6.1/tests/GitBlob.py +69 -0
- pygithub-2.6.1/tests/GitCommit.py +114 -0
- pygithub-2.6.1/tests/GitCommitVerification.py +42 -0
- pygithub-2.6.1/tests/GitRef.py +73 -0
- pygithub-2.6.1/tests/GitRelease.py +294 -0
- pygithub-2.6.1/tests/GitReleaseAsset.py +104 -0
- pygithub-2.6.1/tests/GitTag.py +68 -0
- pygithub-2.6.1/tests/GitTree.py +81 -0
- pygithub-2.6.1/tests/GithubApp.py +169 -0
- pygithub-2.6.1/tests/GithubIntegration.py +309 -0
- pygithub-2.6.1/tests/GithubRetry.py +408 -0
- pygithub-2.6.1/tests/Github_.py +637 -0
- pygithub-2.6.1/tests/GlobalAdvisory.py +226 -0
- pygithub-2.6.1/tests/GraphQl.py +358 -0
- pygithub-2.6.1/tests/Hook.py +111 -0
- pygithub-2.6.1/tests/Installation.py +137 -0
- pygithub-2.6.1/tests/Issue.py +349 -0
- pygithub-2.6.1/tests/Issue134.py +62 -0
- pygithub-2.6.1/tests/Issue174.py +45 -0
- pygithub-2.6.1/tests/IssueComment.py +132 -0
- pygithub-2.6.1/tests/IssueEvent.py +1017 -0
- pygithub-2.6.1/tests/Label.py +70 -0
- pygithub-2.6.1/tests/License.py +66 -0
- pygithub-2.6.1/tests/Membership.py +57 -0
- pygithub-2.6.1/tests/Migration.py +106 -0
- pygithub-2.6.1/tests/Milestone.py +98 -0
- pygithub-2.6.1/tests/NamedUser.py +467 -0
- pygithub-2.6.1/tests/Organization.py +778 -0
- pygithub-2.6.1/tests/PaginatedList.py +409 -0
- pygithub-2.6.1/tests/Pickle.py +92 -0
- pygithub-2.6.1/tests/Project.py +74 -0
- pygithub-2.6.1/tests/ProjectCard.py +123 -0
- pygithub-2.6.1/tests/ProjectColumn.py +139 -0
- pygithub-2.6.1/tests/PublicKey.py +65 -0
- pygithub-2.6.1/tests/PullRequest.py +649 -0
- pygithub-2.6.1/tests/PullRequest1684.py +84 -0
- pygithub-2.6.1/tests/PullRequestComment.py +122 -0
- pygithub-2.6.1/tests/RateLimiting.py +88 -0
- pygithub-2.6.1/tests/ReplayData/AuthenticatedUser.testGetInvitations.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Branch.setUp.txt +54 -0
- pygithub-2.6.1/tests/ReplayData/Branch.testEditProtection.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Branch.testEditRequiredStatusChecksChecks.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Branch.testEditRequiredStatusChecksContexts.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Branch.testRemoveTeamPushRestrictions.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Branch.testRemoveUserPushRestrictions.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/CheckRun.setUp.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/CheckRun.testAttributes.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/CheckRun.testCheckRunOutputAttributes.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/CheckRun.testGetCheckRunsForRef.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByCheckName.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByFilter.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByStatus.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/CheckSuite.setUp.txt +54 -0
- pygithub-2.6.1/tests/ReplayData/Commit.setUp.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Commit.testCreateStatusWithAllParameters.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Commit.testGetBranchesWhereHead.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/CommitComment.setUp.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/CommitComment.testCreateReaction.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/CommitComment.testDelete.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/CommitComment.testDeleteReaction.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/CommitComment.testEdit.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/CommitComment.testGetReactions.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/CommitStatus.setUp.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/ContentFile.setUp.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Copilot.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Copilot.testAddSeats.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Copilot.testAttributes.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Copilot.testGetSeats.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Copilot.testRemoveSeats.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/ExposeAllAttributes.testAllClasses.txt +636 -0
- pygithub-2.6.1/tests/ReplayData/GitCommit.setUp.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/GitCommitVerification.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/GitRelease.testCreateGitTagAndRelease.txt +53 -0
- pygithub-2.6.1/tests/ReplayData/GitRelease.testDelete.txt +54 -0
- pygithub-2.6.1/tests/ReplayData/GitRelease.testUpdate.txt +64 -0
- pygithub-2.6.1/tests/ReplayData/GitRelease.testUploadAsset.txt +64 -0
- pygithub-2.6.1/tests/ReplayData/GitRelease.testUploadAssetFileLike.txt +75 -0
- pygithub-2.6.1/tests/ReplayData/GitRelease.testUploadAssetFromMemory.txt +75 -0
- pygithub-2.6.1/tests/ReplayData/GitRelease.testUploadAssetWithName.txt +64 -0
- pygithub-2.6.1/tests/ReplayData/GitReleaseAsset.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/GitReleaseAsset.testDownloadAssetFile.txt +101 -0
- pygithub-2.6.1/tests/ReplayData/GitReleaseAsset.testDownloadAssetStream.txt +101 -0
- pygithub-2.6.1/tests/ReplayData/GitTag.setUp.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/GithubApp.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/GlobalAdvisory.testAttributes.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.setUp.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testAddAndRemoveAssignees.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testAddAndRemoveLabels.txt +98 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testAddAndRemoveLabelsWithStringArguments.txt +76 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testAttributes.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testCreateComment.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testCreateReaction.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testDeleteAndSetLabels.txt +76 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testDeleteAndSetLabelsWithStringArguments.txt +54 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testDeleteReaction.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testEditResetAssignee.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testEditResetMilestone.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testEditWithAllParameters.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testEditWithStateReasonNotPlanned.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testEditWithStateReasonReopened.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testEditWithoutParameters.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testGetComments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testGetCommentsSince.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testGetEvents.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testGetLabels.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testGetReactions.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testGetTimeline.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testLock.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Issue.testUnlock.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Issue174.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Issue174.testGetDirContentsWithHttpRedirect.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/IssueComment.setUp.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/IssueComment.testCreateReaction.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/IssueComment.testDelete.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/IssueComment.testDeleteReaction.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/IssueComment.testEdit.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/IssueComment.testGetReactions.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/IssueComment.testMinimize.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/IssueComment.testUnminimize.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/IssueEvent.setUp.txt +307 -0
- pygithub-2.6.1/tests/ReplayData/Label.setUp.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Label.testDelete.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Label.testEdit.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/LazyRepository.testChangeAutomateFixWhenNoVulnerabilityAlert.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/LazyRepository.testDisableAutomatedSecurityFixes.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/LazyRepository.testDisableVulnerabilityAlert.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/LazyRepository.testEnableAutomatedSecurityFixes.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/LazyRepository.testEnableVulnerabilityAlert.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/LazyRepository.testGetIssues.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/LazyRepository.testGetVulnerabilityAlert.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/LazyRepository.testGetVulnerabilityAlertWhenTurnedOff.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/LazyRepository.testOwner.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/License.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Membership.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Migration.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Milestone.setUp.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Milestone.testDelete.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Milestone.testEditWithAllParameters.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Milestone.testEditWithMinimalParameters.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Milestone.testGetLabels.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/NamedUser.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Organization.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Organization.testAttachDetachSecurityConfig.txt +75 -0
- pygithub-2.6.1/tests/ReplayData/Organization.testCreateCodeSecurityConfigs.txt +20 -0
- pygithub-2.6.1/tests/ReplayData/Organization.testGetCodeSecurityConfig.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Organization.testGetCodeSecurityConfigs.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Organization.testSetDefaultCodeSecurityConfig.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Pickle.testPickleRepository.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Project.setUp.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/ProjectCard.setUp.txt +76 -0
- pygithub-2.6.1/tests/ReplayData/ProjectCard.testDelete.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/ProjectCard.testEditArchived.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/ProjectCard.testEditNote.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/ProjectCard.testEditWithoutParameters.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/ProjectCard.testGetContent.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/ProjectCard.testMove.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/ProjectColumn.setUp.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/ProjectColumn.testCreate.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/PullRequest.setUp.txt +109 -0
- pygithub-2.6.1/tests/ReplayData/PullRequest.testConvertToDraft.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/PullRequest.testMarkReadyForReview.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/PullRequest.testReviewRequests.txt +65 -0
- pygithub-2.6.1/tests/ReplayData/PullRequestComment.setUp.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/PullRequestComment.testCreateReaction.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/PullRequestComment.testDelete.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/PullRequestComment.testDeleteReaction.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/PullRequestComment.testEdit.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/PullRequestComment.testGetReactions.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/RateLimiting.testGetRateLimit.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testAddToCollaboratorsCustomRole.txt +20 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testAssignees.txt +98 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testBadSubscribePubSubHubbub.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCodeScanAlerts.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCollaboratorPermission.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCollaboratorPermissionNoPushAccess.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCollaborators.txt +76 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCompare.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCompareCommitPagination.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateAutolink.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateDeployment.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateFile.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateFork.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateForkOrg.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitBlob.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitCommit.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitCommitWithAllArguments.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitCommitWithParents.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitRef.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitRelease.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitReleaseGenerateReleaseNotes.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitReleaseWithAllArguments.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitTag.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitTagWithAllArguments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitTree.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitTreeWithBaseTree.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitTreeWithNullSha.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateGitTreeWithSha.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateHookWithAllParameters.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateHookWithMinimalParameters.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateIssue.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateIssueWithAllArguments.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateIssueWithAllArgumentsStringLabel.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateKey.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateLabel.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateMilestone.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateMilestoneWithMinimalArguments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateProject.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreatePull.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreatePullFromIssue.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testCreateRepositoryDispatch.txt +20 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testDeleteFile.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testDeleteSecret.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testEditWithAllArguments.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testEditWithDefaultBranch.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testEditWithoutArguments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetArchiveLink.txt +42 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetAutolinks.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetBranch.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetComments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetCommits.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetCommitsWithArguments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetCommitsWithAuthor.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetCommitsWithSinceUntil.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetContents.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetContentsDir.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetContentsDirWithSlash.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetContentsWithRef.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetContributors.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetCustomProperties.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetDeployments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetDownloads.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetEvents.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetForks.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetGitRef.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetGitRefWithIssue102Reverted.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetGitRefs.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetGitTreeWithRecursive.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetHookDeliveries.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetHookDelivery.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetHooks.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetIssues.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetIssuesComments.txt +65 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetIssuesEvents.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetIssuesWithArguments.txt +109 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetIssuesWithWildcards.txt +43 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetKeys.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetLabel.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetLabels.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetLanguages.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetLicense.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetMilestones.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetMilestonesWithArguments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetNetworkEvents.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetPendingInvitations.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetPulls.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetPullsComments.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetPullsWithArguments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetStargazers.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetSubscribers.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetTopics.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testGetWatchers.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testLegacySearchIssues.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testMergeUpstreamFailure.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testMergeUpstreamSuccess.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testMergeWithConflict.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testMergeWithMessage.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testMergeWithNothingToDo.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testMergeWithoutMessage.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testRemoveAutolink.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testRemoveInvitation.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testRenameBranchObject.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testRenameBranchString.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testReplaceTopics.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testRepoVariable.txt +31 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testSearchIssues.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testStatisticsCodeFrequency.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testStatisticsCommitActivity.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testStatisticsContributors.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testStatisticsParticipation.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testStatisticsPunchCard.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testSubscribePubSubHubbub.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testTransferOwnership.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testTransferOwnershipInvalidOwner.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testUnsubscribePubSubHubbub.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testUpdateCustomProperties.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Repository.testUpdateFile.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Search.testSearchCommits.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Search.testSearchCommitsOrder.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/SecurityAndAnalysis.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Tag.setUp.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Team.setUp.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Team.testDelete.txt +9 -0
- pygithub-2.6.1/tests/ReplayData/Team.testDiscussions.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Team.testEditWithAllArguments.txt +21 -0
- pygithub-2.6.1/tests/ReplayData/Team.testEditWithoutArguments.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Team.testGetTeams.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Team.testMembers.txt +119 -0
- pygithub-2.6.1/tests/ReplayData/Team.testRepoPermission.txt +20 -0
- pygithub-2.6.1/tests/ReplayData/Team.testRepos.txt +120 -0
- pygithub-2.6.1/tests/ReplayData/Team.testTeamMembership.txt +76 -0
- pygithub-2.6.1/tests/ReplayData/Team.testUpdateTeamRepository.txt +20 -0
- pygithub-2.6.1/tests/ReplayData/Topic.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/UserKey.setUp.txt +10 -0
- pygithub-2.6.1/tests/ReplayData/Workflow.testDisable.txt +31 -0
- pygithub-2.6.1/tests/ReplayData/Workflow.testDisabledWhenAlreadyDisabled.txt +32 -0
- pygithub-2.6.1/tests/ReplayData/Workflow.testEnable.txt +31 -0
- pygithub-2.6.1/tests/ReplayData/Workflow.testEnableWhenAlreadyEnabled.txt +31 -0
- pygithub-2.6.1/tests/Repository.py +2277 -0
- pygithub-2.6.1/tests/RepositoryAdvisory.py +373 -0
- pygithub-2.6.1/tests/RepositoryKey.py +91 -0
- pygithub-2.6.1/tests/Requester.py +515 -0
- pygithub-2.6.1/tests/Retry.py +92 -0
- pygithub-2.6.1/tests/Search.py +301 -0
- pygithub-2.6.1/tests/SecurityAndAnalysis.py +70 -0
- pygithub-2.6.1/tests/SelfHostedActionsRunner.py +68 -0
- pygithub-2.6.1/tests/SourceImport.py +95 -0
- pygithub-2.6.1/tests/Tag.py +59 -0
- pygithub-2.6.1/tests/Team.py +204 -0
- pygithub-2.6.1/tests/Topic.py +102 -0
- pygithub-2.6.1/tests/Traffic.py +100 -0
- pygithub-2.6.1/tests/UserKey.py +65 -0
- pygithub-2.6.1/tests/Workflow.py +159 -0
- pygithub-2.6.1/tests/WorkflowRun.py +196 -0
- pygithub-2.6.1/tox.ini +37 -0
- pygithub-2.5.0/.github/release-drafter.yml +0 -45
- pygithub-2.5.0/.github/workflows/ci.yml +0 -69
- pygithub-2.5.0/.github/workflows/pypi-release.yml +0 -29
- pygithub-2.5.0/PKG-INFO +0 -103
- pygithub-2.5.0/PyGithub.egg-info/PKG-INFO +0 -103
- pygithub-2.5.0/PyGithub.egg-info/SOURCES.txt +0 -1254
- pygithub-2.5.0/doc/changes.rst +0 -1746
- pygithub-2.5.0/github/AccessToken.py +0 -157
- pygithub-2.5.0/github/AdvisoryBase.py +0 -149
- pygithub-2.5.0/github/AdvisoryCredit.py +0 -114
- pygithub-2.5.0/github/AdvisoryCreditDetailed.py +0 -91
- pygithub-2.5.0/github/AdvisoryVulnerability.py +0 -175
- pygithub-2.5.0/github/AdvisoryVulnerabilityPackage.py +0 -82
- pygithub-2.5.0/github/ApplicationOAuth.py +0 -200
- pygithub-2.5.0/github/Artifact.py +0 -167
- pygithub-2.5.0/github/Auth.py +0 -532
- pygithub-2.5.0/github/AuthenticatedUser.py +0 -1166
- pygithub-2.5.0/github/Autolink.py +0 -88
- pygithub-2.5.0/github/Branch.py +0 -590
- pygithub-2.5.0/github/BranchProtection.py +0 -174
- pygithub-2.5.0/github/CVSS.py +0 -79
- pygithub-2.5.0/github/CheckRun.py +0 -268
- pygithub-2.5.0/github/CheckRunAnnotation.py +0 -110
- pygithub-2.5.0/github/CheckRunOutput.py +0 -90
- pygithub-2.5.0/github/CheckSuite.py +0 -285
- pygithub-2.5.0/github/Clones.py +0 -87
- pygithub-2.5.0/github/CodeScanAlert.py +0 -160
- pygithub-2.5.0/github/CodeScanAlertInstance.py +0 -114
- pygithub-2.5.0/github/CodeScanAlertInstanceLocation.py +0 -94
- pygithub-2.5.0/github/CodeScanRule.py +0 -97
- pygithub-2.5.0/github/CodeScanTool.py +0 -86
- pygithub-2.5.0/github/Commit.py +0 -313
- pygithub-2.5.0/github/CommitCombinedStatus.py +0 -113
- pygithub-2.5.0/github/CommitComment.py +0 -225
- pygithub-2.5.0/github/CommitStats.py +0 -68
- pygithub-2.5.0/github/CommitStatus.py +0 -129
- pygithub-2.5.0/github/ContentFile.py +0 -194
- pygithub-2.5.0/github/DependabotAlert.py +0 -162
- pygithub-2.5.0/github/DependabotAlertAdvisory.py +0 -69
- pygithub-2.5.0/github/DependabotAlertDependency.py +0 -68
- pygithub-2.5.0/github/DependabotAlertVulnerability.py +0 -75
- pygithub-2.5.0/github/Deployment.py +0 -270
- pygithub-2.5.0/github/DeploymentStatus.py +0 -171
- pygithub-2.5.0/github/Enterprise.py +0 -95
- pygithub-2.5.0/github/EnterpriseConsumedLicenses.py +0 -108
- pygithub-2.5.0/github/Environment.py +0 -298
- pygithub-2.5.0/github/EnvironmentDeploymentBranchPolicy.py +0 -79
- pygithub-2.5.0/github/EnvironmentProtectionRule.py +0 -107
- pygithub-2.5.0/github/EnvironmentProtectionRuleReviewer.py +0 -100
- pygithub-2.5.0/github/Event.py +0 -122
- pygithub-2.5.0/github/File.py +0 -133
- pygithub-2.5.0/github/Gist.py +0 -312
- pygithub-2.5.0/github/GistComment.py +0 -130
- pygithub-2.5.0/github/GistFile.py +0 -95
- pygithub-2.5.0/github/GistHistoryState.py +0 -226
- pygithub-2.5.0/github/GitAuthor.py +0 -75
- pygithub-2.5.0/github/GitBlob.py +0 -98
- pygithub-2.5.0/github/GitCommit.py +0 -132
- pygithub-2.5.0/github/GitObject.py +0 -74
- pygithub-2.5.0/github/GitRef.py +0 -107
- pygithub-2.5.0/github/GitRelease.py +0 -341
- pygithub-2.5.0/github/GitReleaseAsset.py +0 -178
- pygithub-2.5.0/github/GitTag.py +0 -117
- pygithub-2.5.0/github/GitTree.py +0 -93
- pygithub-2.5.0/github/GitTreeElement.py +0 -95
- pygithub-2.5.0/github/GithubApp.py +0 -164
- pygithub-2.5.0/github/GithubIntegration.py +0 -316
- pygithub-2.5.0/github/GithubObject.py +0 -534
- pygithub-2.5.0/github/GitignoreTemplate.py +0 -72
- pygithub-2.5.0/github/GlobalAdvisory.py +0 -122
- pygithub-2.5.0/github/Hook.py +0 -206
- pygithub-2.5.0/github/HookDelivery.py +0 -213
- pygithub-2.5.0/github/HookResponse.py +0 -74
- pygithub-2.5.0/github/Installation.py +0 -157
- pygithub-2.5.0/github/InstallationAuthorization.py +0 -99
- pygithub-2.5.0/github/Invitation.py +0 -135
- pygithub-2.5.0/github/Issue.py +0 -583
- pygithub-2.5.0/github/IssueComment.py +0 -248
- pygithub-2.5.0/github/IssueEvent.py +0 -217
- pygithub-2.5.0/github/IssuePullRequest.py +0 -71
- pygithub-2.5.0/github/Label.py +0 -122
- pygithub-2.5.0/github/License.py +0 -153
- pygithub-2.5.0/github/MainClass.py +0 -1031
- pygithub-2.5.0/github/Membership.py +0 -119
- pygithub-2.5.0/github/Migration.py +0 -196
- pygithub-2.5.0/github/Milestone.py +0 -213
- pygithub-2.5.0/github/NamedEnterpriseUser.py +0 -203
- pygithub-2.5.0/github/NamedUser.py +0 -634
- pygithub-2.5.0/github/Notification.py +0 -171
- pygithub-2.5.0/github/NotificationSubject.py +0 -89
- pygithub-2.5.0/github/Organization.py +0 -1535
- pygithub-2.5.0/github/OrganizationCustomProperty.py +0 -169
- pygithub-2.5.0/github/OrganizationDependabotAlert.py +0 -54
- pygithub-2.5.0/github/OrganizationSecret.py +0 -137
- pygithub-2.5.0/github/OrganizationVariable.py +0 -133
- pygithub-2.5.0/github/PaginatedList.py +0 -448
- pygithub-2.5.0/github/Path.py +0 -94
- pygithub-2.5.0/github/Permissions.py +0 -97
- pygithub-2.5.0/github/Plan.py +0 -96
- pygithub-2.5.0/github/Project.py +0 -245
- pygithub-2.5.0/github/ProjectCard.py +0 -218
- pygithub-2.5.0/github/ProjectColumn.py +0 -217
- pygithub-2.5.0/github/PublicKey.py +0 -100
- pygithub-2.5.0/github/PullRequest.py +0 -1014
- pygithub-2.5.0/github/PullRequestComment.py +0 -271
- pygithub-2.5.0/github/PullRequestPart.py +0 -97
- pygithub-2.5.0/github/PullRequestReview.py +0 -159
- pygithub-2.5.0/github/Rate.py +0 -95
- pygithub-2.5.0/github/RateLimit.py +0 -95
- pygithub-2.5.0/github/Referrer.py +0 -86
- pygithub-2.5.0/github/Repository.py +0 -4517
- pygithub-2.5.0/github/RepositoryAdvisory.py +0 -371
- pygithub-2.5.0/github/RepositoryDiscussionCategory.py +0 -141
- pygithub-2.5.0/github/RepositoryKey.py +0 -146
- pygithub-2.5.0/github/RepositoryPreferences.py +0 -76
- pygithub-2.5.0/github/Requester.py +0 -1178
- pygithub-2.5.0/github/RequiredPullRequestReviews.py +0 -141
- pygithub-2.5.0/github/RequiredStatusChecks.py +0 -86
- pygithub-2.5.0/github/Secret.py +0 -123
- pygithub-2.5.0/github/SecurityAndAnalysis.py +0 -121
- pygithub-2.5.0/github/SecurityAndAnalysisFeature.py +0 -61
- pygithub-2.5.0/github/SelfHostedActionsRunner.py +0 -101
- pygithub-2.5.0/github/SourceImport.py +0 -171
- pygithub-2.5.0/github/Stargazer.py +0 -86
- pygithub-2.5.0/github/StatsCodeFrequency.py +0 -75
- pygithub-2.5.0/github/StatsCommitActivity.py +0 -78
- pygithub-2.5.0/github/StatsContributor.py +0 -116
- pygithub-2.5.0/github/StatsParticipation.py +0 -72
- pygithub-2.5.0/github/StatsPunchCard.py +0 -68
- pygithub-2.5.0/github/Tag.py +0 -95
- pygithub-2.5.0/github/Team.py +0 -472
- pygithub-2.5.0/github/TimelineEvent.py +0 -153
- pygithub-2.5.0/github/TimelineEventSource.py +0 -79
- pygithub-2.5.0/github/Topic.py +0 -135
- pygithub-2.5.0/github/UserKey.py +0 -108
- pygithub-2.5.0/github/Variable.py +0 -142
- pygithub-2.5.0/github/View.py +0 -87
- pygithub-2.5.0/github/Workflow.py +0 -220
- pygithub-2.5.0/github/WorkflowJob.py +0 -241
- pygithub-2.5.0/github/WorkflowRun.py +0 -375
- pygithub-2.5.0/github/__init__.py +0 -111
- pygithub-2.5.0/requirements/test.txt +0 -5
- pygithub-2.5.0/tests/ApplicationOAuth.py +0 -233
- pygithub-2.5.0/tests/AuthenticatedUser.py +0 -797
- pygithub-2.5.0/tests/Authentication.py +0 -364
- pygithub-2.5.0/tests/Branch.py +0 -299
- pygithub-2.5.0/tests/BranchProtection.py +0 -61
- pygithub-2.5.0/tests/CheckRun.py +0 -343
- pygithub-2.5.0/tests/CheckSuite.py +0 -170
- pygithub-2.5.0/tests/Commit.py +0 -144
- pygithub-2.5.0/tests/CommitComment.py +0 -93
- pygithub-2.5.0/tests/CommitStatus.py +0 -73
- pygithub-2.5.0/tests/ConditionalRequestUpdate.py +0 -55
- pygithub-2.5.0/tests/Connection.py +0 -115
- pygithub-2.5.0/tests/ContentFile.py +0 -58
- pygithub-2.5.0/tests/DependabotAlert.py +0 -186
- pygithub-2.5.0/tests/Deployment.py +0 -77
- pygithub-2.5.0/tests/DeploymentStatus.py +0 -102
- pygithub-2.5.0/tests/Environment.py +0 -245
- pygithub-2.5.0/tests/Exceptions.py +0 -156
- pygithub-2.5.0/tests/ExposeAllAttributes.py +0 -165
- pygithub-2.5.0/tests/Framework.py +0 -462
- pygithub-2.5.0/tests/Gist.py +0 -157
- pygithub-2.5.0/tests/GistComment.py +0 -72
- pygithub-2.5.0/tests/GitBlob.py +0 -66
- pygithub-2.5.0/tests/GitCommit.py +0 -73
- pygithub-2.5.0/tests/GitMembership.py +0 -49
- pygithub-2.5.0/tests/GitRef.py +0 -69
- pygithub-2.5.0/tests/GitRelease.py +0 -267
- pygithub-2.5.0/tests/GitTag.py +0 -69
- pygithub-2.5.0/tests/GitTree.py +0 -77
- pygithub-2.5.0/tests/GithubApp.py +0 -149
- pygithub-2.5.0/tests/GithubIntegration.py +0 -287
- pygithub-2.5.0/tests/GithubRetry.py +0 -406
- pygithub-2.5.0/tests/Github_.py +0 -635
- pygithub-2.5.0/tests/GlobalAdvisory.py +0 -224
- pygithub-2.5.0/tests/GraphQl.py +0 -357
- pygithub-2.5.0/tests/Hook.py +0 -104
- pygithub-2.5.0/tests/Installation.py +0 -104
- pygithub-2.5.0/tests/Issue.py +0 -340
- pygithub-2.5.0/tests/Issue134.py +0 -60
- pygithub-2.5.0/tests/Issue174.py +0 -44
- pygithub-2.5.0/tests/IssueComment.py +0 -120
- pygithub-2.5.0/tests/IssueEvent.py +0 -868
- pygithub-2.5.0/tests/Label.py +0 -63
- pygithub-2.5.0/tests/License.py +0 -61
- pygithub-2.5.0/tests/Migration.py +0 -85
- pygithub-2.5.0/tests/Milestone.py +0 -96
- pygithub-2.5.0/tests/NamedUser.py +0 -452
- pygithub-2.5.0/tests/Organization.py +0 -706
- pygithub-2.5.0/tests/PaginatedList.py +0 -407
- pygithub-2.5.0/tests/Pickle.py +0 -58
- pygithub-2.5.0/tests/Project.py +0 -201
- pygithub-2.5.0/tests/ProjectColumn.py +0 -115
- pygithub-2.5.0/tests/PublicKey.py +0 -58
- pygithub-2.5.0/tests/PullRequest.py +0 -573
- pygithub-2.5.0/tests/PullRequest1684.py +0 -83
- pygithub-2.5.0/tests/PullRequestComment.py +0 -95
- pygithub-2.5.0/tests/RateLimiting.py +0 -65
- pygithub-2.5.0/tests/ReplayData/AuthenticatedUser.testGetInvitations.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Branch.setUp.txt +0 -54
- pygithub-2.5.0/tests/ReplayData/Branch.testEditProtection.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Branch.testRemoveTeamPushRestrictions.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Branch.testRemoveUserPushRestrictions.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/CheckRun.setUp.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/CheckRun.testCheckRunOutputAttributes.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/CheckRun.testGetCheckRunsForRef.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByCheckName.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByFilter.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByStatus.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/CheckSuite.setUp.txt +0 -54
- pygithub-2.5.0/tests/ReplayData/Commit.setUp.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Commit.testCreateStatusWithAllParameters.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/CommitComment.setUp.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/CommitComment.testCreateReaction.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/CommitComment.testDelete.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/CommitComment.testDeleteReaction.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/CommitComment.testEdit.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/CommitComment.testGetReactions.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/CommitStatus.setUp.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/ContentFile.setUp.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/ExposeAllAttributes.testAllClasses.txt +0 -636
- pygithub-2.5.0/tests/ReplayData/GitCommit.setUp.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/GitMembership.testGetMembership.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/GitRelease.testCreateGitTagAndRelease.txt +0 -53
- pygithub-2.5.0/tests/ReplayData/GitRelease.testDelete.txt +0 -54
- pygithub-2.5.0/tests/ReplayData/GitRelease.testUpdate.txt +0 -64
- pygithub-2.5.0/tests/ReplayData/GitRelease.testUploadAsset.txt +0 -64
- pygithub-2.5.0/tests/ReplayData/GitRelease.testUploadAssetFileLike.txt +0 -75
- pygithub-2.5.0/tests/ReplayData/GitRelease.testUploadAssetFromMemory.txt +0 -75
- pygithub-2.5.0/tests/ReplayData/GitRelease.testUploadAssetWithName.txt +0 -64
- pygithub-2.5.0/tests/ReplayData/GitTag.setUp.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/GithubApp.testGetPublicApp.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/GlobalAdvisory.testAttributes.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.setUp.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Issue.testAddAndRemoveAssignees.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Issue.testAddAndRemoveLabels.txt +0 -98
- pygithub-2.5.0/tests/ReplayData/Issue.testAddAndRemoveLabelsWithStringArguments.txt +0 -76
- pygithub-2.5.0/tests/ReplayData/Issue.testAttributes.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testCreateComment.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testCreateReaction.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testDeleteAndSetLabels.txt +0 -76
- pygithub-2.5.0/tests/ReplayData/Issue.testDeleteAndSetLabelsWithStringArguments.txt +0 -54
- pygithub-2.5.0/tests/ReplayData/Issue.testDeleteReaction.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Issue.testEditResetAssignee.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testEditResetMilestone.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testEditWithAllParameters.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Issue.testEditWithStateReasonNotPlanned.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testEditWithStateReasonReopened.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testEditWithoutParameters.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testGetComments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testGetCommentsSince.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testGetEvents.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testGetLabels.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testGetReactions.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testGetTimeline.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue.testLock.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Issue.testUnlock.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Issue174.setUp.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Issue174.testGetDirContentsWhithHttpRedirect.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/IssueComment.setUp.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/IssueComment.testCreateReaction.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/IssueComment.testDelete.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/IssueComment.testDeleteReaction.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/IssueComment.testEdit.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/IssueComment.testGetReactions.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/IssueComment.testMinimize.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/IssueComment.testUnminimize.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/IssueEvent.setUp.txt +0 -296
- pygithub-2.5.0/tests/ReplayData/Label.setUp.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Label.testDelete.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Label.testEdit.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/LazyRepository.setUp.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/LazyRepository.testChangeAutomateFixWhenNoVulnerabilityAlert.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/LazyRepository.testDisableAutomatedSecurityFixes.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/LazyRepository.testDisableVulnerabilityAlert.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/LazyRepository.testEnableAutomatedSecurityFixes.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/LazyRepository.testEnableVulnerabilityAlert.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/LazyRepository.testGetIssues.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/LazyRepository.testGetVulnerabilityAlert.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/LazyRepository.testGetVulnerabilityAlertWhenTurnedOff.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/LazyRepository.testOwner.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/License.setUp.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Migration.setUp.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Milestone.setUp.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Milestone.testDelete.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Milestone.testEditWithAllParameters.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Milestone.testEditWithMinimalParameters.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Milestone.testGetLabels.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/NamedUser.setUp.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Organization.setUp.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Project.setUp.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Project.testCreateColumn.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Project.testEditCardArchived.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/Project.testEditCardNote.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/Project.testEditCardWithoutParameters.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/Project.testGetProject.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Project.testGetProjectCardContent.txt +0 -54
- pygithub-2.5.0/tests/ReplayData/Project.testProjectAttributes.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Project.testProjectCardAttributes.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Project.testProjectCardDelete.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/Project.testProjectCardMove.txt +0 -54
- pygithub-2.5.0/tests/ReplayData/Project.testProjectColumnAttributes.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/ProjectColumn.setUp.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/PullRequest.setUp.txt +0 -109
- pygithub-2.5.0/tests/ReplayData/PullRequest.testReviewRequests.txt +0 -65
- pygithub-2.5.0/tests/ReplayData/PullRequestComment.setUp.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/PullRequestComment.testCreateReaction.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/PullRequestComment.testDelete.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/PullRequestComment.testDeleteReaction.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/PullRequestComment.testEdit.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/PullRequestComment.testGetReactions.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/RateLimiting.testGetRateLimit.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.setUp.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testAddToCollaboratorsCustomRole.txt +0 -20
- pygithub-2.5.0/tests/ReplayData/Repository.testAssignees.txt +0 -98
- pygithub-2.5.0/tests/ReplayData/Repository.testBadSubscribePubSubHubbub.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCodeScanAlerts.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testCollaboratorPermission.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCollaboratorPermissionNoPushAccess.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCollaborators.txt +0 -76
- pygithub-2.5.0/tests/ReplayData/Repository.testCompare.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCompareCommitPagination.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateAutolink.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateDeployment.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateFile.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateFork.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateForkOrg.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitBlob.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitCommit.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitCommitWithAllArguments.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitCommitWithParents.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitRef.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitRelease.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitReleaseGenerateReleaseNotes.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitReleaseWithAllArguments.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitTag.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitTagWithAllArguments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitTree.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitTreeWithBaseTree.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitTreeWithNullSha.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateGitTreeWithSha.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateHookWithAllParameters.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateHookWithMinimalParameters.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateIssue.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateIssueWithAllArguments.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateIssueWithAllArgumentsStringLabel.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateKey.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateLabel.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateMilestone.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateMilestoneWithMinimalArguments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateProject.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreatePull.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testCreatePullFromIssue.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testCreateRepositoryDispatch.txt +0 -20
- pygithub-2.5.0/tests/ReplayData/Repository.testDeleteFile.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testDeleteSecret.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Repository.testEditWithAllArguments.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testEditWithDefaultBranch.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testEditWithoutArguments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetArchiveLink.txt +0 -42
- pygithub-2.5.0/tests/ReplayData/Repository.testGetAutolinks.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetBranch.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetComments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetCommits.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Repository.testGetCommitsWithArguments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetCommitsWithAuthor.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/Repository.testGetCommitsWithSinceUntil.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testGetContents.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testGetContentsDir.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetContentsDirWithSlash.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetContentsWithRef.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testGetContributors.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetCustomProperties.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetDeployments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetDownloads.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetEvents.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetForks.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetGitRef.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetGitRefWithIssue102Reverted.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetGitRefs.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetGitTreeWithRecursive.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetHookDeliveries.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetHookDelivery.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetHooks.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetIssues.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetIssuesComments.txt +0 -65
- pygithub-2.5.0/tests/ReplayData/Repository.testGetIssuesEvents.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetIssuesWithArguments.txt +0 -109
- pygithub-2.5.0/tests/ReplayData/Repository.testGetIssuesWithWildcards.txt +0 -43
- pygithub-2.5.0/tests/ReplayData/Repository.testGetKeys.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetLabel.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetLabels.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetLanguages.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetLicense.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetMilestones.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetMilestonesWithArguments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetNetworkEvents.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetPendingInvitations.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Repository.testGetPulls.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetPullsComments.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Repository.testGetPullsWithArguments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetStargazers.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Repository.testGetSubscribers.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetTopics.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testGetWatchers.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testLegacySearchIssues.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testMergeWithConflict.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testMergeWithMessage.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testMergeWithNothingToDo.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Repository.testMergeWithoutMessage.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testRemoveAutolink.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Repository.testRemoveInvitation.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Repository.testRenameBranchObject.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testRenameBranchString.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testReplaceTopics.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testRepoVariable.txt +0 -31
- pygithub-2.5.0/tests/ReplayData/Repository.testSearchIssues.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Repository.testStatisticsCodeFrequency.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testStatisticsCommitActivity.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testStatisticsContributors.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testStatisticsParticipation.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testStatisticsPunchCard.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Repository.testSubscribePubSubHubbub.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Repository.testUnsubscribePubSubHubbub.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Repository.testUpdateCustomProperties.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Repository.testUpdateFile.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Search.testPaginateSearchCommits.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Search.testSearchCommits.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/SecurityAndAnalysis.setUp.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Tag.setUp.txt +0 -32
- pygithub-2.5.0/tests/ReplayData/Team.setUp.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Team.testDelete.txt +0 -9
- pygithub-2.5.0/tests/ReplayData/Team.testDiscussions.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Team.testEditWithAllArguments.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Team.testEditWithoutArguments.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Team.testGetTeams.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/Team.testMembers.txt +0 -119
- pygithub-2.5.0/tests/ReplayData/Team.testRepoPermission.txt +0 -21
- pygithub-2.5.0/tests/ReplayData/Team.testRepos.txt +0 -120
- pygithub-2.5.0/tests/ReplayData/Team.testTeamMembership.txt +0 -76
- pygithub-2.5.0/tests/ReplayData/Team.testUpdateTeamRepository.txt +0 -20
- pygithub-2.5.0/tests/ReplayData/Topic.setUp.txt +0 -10
- pygithub-2.5.0/tests/ReplayData/UserKey.setUp.txt +0 -10
- pygithub-2.5.0/tests/Repository.py +0 -2139
- pygithub-2.5.0/tests/RepositoryAdvisory.py +0 -360
- pygithub-2.5.0/tests/RepositoryKey.py +0 -84
- pygithub-2.5.0/tests/Requester.py +0 -481
- pygithub-2.5.0/tests/Retry.py +0 -90
- pygithub-2.5.0/tests/Search.py +0 -264
- pygithub-2.5.0/tests/SecurityAndAnalysis.py +0 -65
- pygithub-2.5.0/tests/SelfHostedActionsRunner.py +0 -55
- pygithub-2.5.0/tests/SourceImport.py +0 -82
- pygithub-2.5.0/tests/Tag.py +0 -51
- pygithub-2.5.0/tests/Team.py +0 -183
- pygithub-2.5.0/tests/Topic.py +0 -96
- pygithub-2.5.0/tests/Traffic.py +0 -97
- pygithub-2.5.0/tests/UserKey.py +0 -58
- pygithub-2.5.0/tests/Workflow.py +0 -132
- pygithub-2.5.0/tests/WorkflowRun.py +0 -155
- pygithub-2.5.0/tox.ini +0 -37
- {pygithub-2.5.0 → pygithub-2.6.1}/.git-blame-ignore-revs +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/.github/FUNDING.yml +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/.github/dependabot.yml +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/.github/workflows/_build-pkg.yml +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/.github/workflows/lint.yml +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/.github/workflows/top-issues.yaml +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/.gitignore +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/.pre-commit-config.yaml +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/.readthedocs.yml +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/CONTRIBUTING.md +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/COPYING +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/COPYING.LESSER +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/DEPLOY.md +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/MAINTAINERS +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/PyGithub.egg-info/dependency_links.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/PyGithub.egg-info/requires.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/PyGithub.egg-info/top_level.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/README.md +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/codecov.yml +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/.gitignore +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/Design.md +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/conf.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples/Authentication.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples/Branch.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples/Commit.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples/Issue.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples/MainClass.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples/Milestone.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples/PullRequest.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples/Repository.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples/Webhook.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/examples.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/github.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/github_integration.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/github_objects/.gitignore +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/index.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/introduction.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/reference.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/doc/utilities.rst +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/AppAuthentication.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/Authorization.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/AuthorizationApplication.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/CWE.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/Comparison.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/Consts.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/DiscussionBase.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/DiscussionCommentBase.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/Download.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/GithubException.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/GithubRetry.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/HookDescription.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/InputFileContent.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/InputGitAuthor.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/InputGitTreeElement.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/PullRequestMergeStatus.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/Reaction.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/RepositoryDiscussion.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/RepositoryDiscussionComment.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/TeamDiscussion.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/WorkflowStep.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/github/py.typed +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/pyproject.toml +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/requirements/docs.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/requirements/types.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/scripts/add_attribute.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/scripts/fix_headers.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/scripts/prepare_release.sh +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/setup.cfg +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Artifact.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Authorization.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Autolink.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/BadAttributes.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/CommitCombinedStatus.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Download.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Enterprise.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/EnterpriseAdmin.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Equality.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Event.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/GithubObject.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue131.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue133.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue139.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue140.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue142.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue2030.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue214.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue216.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue278.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue33.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue494.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue50.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue54.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue572.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue80.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue823.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue87.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue937.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Issue945.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Logging_.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Markdown.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/NamedUser1430.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Notification.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Organization1437.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Organization2072.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/OrganizationHasInMembers.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Permissions.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Persistence.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/PoolSize.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Project1434.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/PullRequest1168.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/PullRequest1169.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/PullRequest1375.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/PullRequest1682.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/PullRequest2408.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/PullRequestFile.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/PullRequestReview.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/PullRequestReview1856.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/RawData.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/Reaction.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReleaseAsset.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ApplicationOAuth.testEnterpriseGetAccessToken.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ApplicationOAuth.testGetAccessToken.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenBadCode.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenUnknownError.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenWithExpiry.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ApplicationOAuth.testRefreshAccessToken.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenBadCode.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenUnknownError.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Artifact.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Artifact.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Artifact.testGetArtifactsFromRepo.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Artifact.testGetArtifactsFromRepoWithName.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflow.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflowWithName.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Artifact.testGetNonexistentArtifact.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Artifact.testGetSingleArtifactFromRepo.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testAcceptInvitation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithClientIdAndSecret.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithoutArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateFork.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateGist.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateGistWithoutDescription.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateKey.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateMigration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateProject.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateRepository.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAutoInit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testEditWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testEditWithoutArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testEmails.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testFollowing.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetAuthorizations.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetEvents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetGists.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetIssues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetIssuesWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetKeys.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetMemberships.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetMigrations.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetNotification.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetNotifications.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetNotificationsWithOtherArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetOrganizationEvents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetOrgs.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetRepos.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetReposWithArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetStarredGists.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetTeams.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetUserIssues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testGetUserIssuesWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testInstallations.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testMarkNotificationsAsRead.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testStarring.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testSubscriptions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/AuthenticatedUser.testWatching.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testAppAuthAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testAppAuthTokenAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testAppAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testAppInstallationAuthAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testAppUserAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testAuthorizationHeaderWithLogin.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testAuthorizationHeaderWithToken.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testBasicAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testJWTAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testLoginAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testNoAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testOAuthAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testTokenAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authentication.testUserAgent.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authorization.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authorization.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Authorization.testEdit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Autolink.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/BadAttributes.testBadAttributeInClassAttribute.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/BadAttributes.testBadAttributeTransformation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/BadAttributes.testBadSimpleAttribute.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/BadAttributes.testBadSimpleAttributeInList.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/BadAttributes.testBadTransformedAttribute.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/BadAttributes.testBadTransformedAttributeInDict.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/BadAttributes.testBadTransformedAttributeInList.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/BadAttributes.testIssue195.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testAddRequiredSignatures.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testAddTeamPushRestrictions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testAddUserPushRestrictions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testAdminEnforcement.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testAllowDeletions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testCommitCommentsOnLine.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testEditProtectionDismissalUsersWithUserOwnedBranch.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsAndDismissalUser.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsWithUserOwnedBranch.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testEditRequiredPullRequestReviews.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithTooLargeApprovingReviewCount.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithUserBranchAndDismissalUsers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testEditRequiredStatusChecks.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testGetRequiredSignatures.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testProtectedAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testRemoveProtection.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testRemovePushRestrictions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testRemoveRequiredPullRequestReviews.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testRemoveRequiredSignatures.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testRemoveRequiredStatusChecks.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testReplaceTeamPushRestrictions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Branch.testReplaceUserPushRestrictions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/BranchProtection.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckRun.testCheckRunAnnotationAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckRun.testCreateCheckRunCompleted.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckRun.testCreateCheckRunInProgress.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckRun.testListCheckRunAnnotations.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckRun.testUpdateCheckRunAll.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckRun.testUpdateCheckRunFailure.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckRun.testUpdateCheckRunSuccess.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testCheckSuiteRerequest.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testCreateCheckSuite.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testGetCheckRuns.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByCheckName.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByFilter.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByStatus.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRef.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByAppId.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByCheckName.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CheckSuite.testUpdateCheckSuitesPreferences.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Commit.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Commit.testCreateComment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Commit.testCreateCommentOnFileLine.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Commit.testCreateCommentOnFilePosition.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Commit.testCreateStatusWithoutOptionalParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Commit.testGetComments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Commit.testGetPulls.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/CommitCombinedStatus.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ConditionalRequestUpdate.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ConditionalRequestUpdate.testDidNotUpdate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ConditionalRequestUpdate.testDidUpdate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ConditionalRequestUpdate.testUpdateObjectWithoutEtag.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DependabotAlert.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DependabotAlert.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DependabotAlert.testGetAlertsWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DependabotAlert.testMultipleAlerts.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DependabotAlert.testRepr.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DependabotAlert.testUpdateAlertDismissed.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DependabotAlert.testUpdateAlertOpen.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Deployment.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DeploymentStatus.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DeploymentStatus.testCreate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/DeploymentStatus.testGetStatuses.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Download.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Download.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Enterprise.testHttp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Enterprise.testHttps.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Enterprise.testLongUrl.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Enterprise.testSpecificPort.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/EnterpriseAdmin.testGetConsumedLicenses.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/EnterpriseAdmin.testGetEnterpriseUsers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.testCreateEnvironment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.testDeleteEnvironment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.testEnvironmentSecret.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.testEnvironmentSecrets.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.testEnvironmentVariable.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.testEnvironmentVariables.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.testGetEnvironments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.testReviewers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Environment.testUpdateEnvironment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Equality.testBranchEquality.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Equality.testUserDifference.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Equality.testUserEquality.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Event.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Exceptions.testBadAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Exceptions.testInvalidInput.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Exceptions.testJSONParseError.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Exceptions.testNonJsonDataReturnedByGithub.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Exceptions.testUnknownObject.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Exceptions.testUnknownUser.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testCreateComment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testDeleteFile.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testEditWithAllParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testEditWithoutParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testFork.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testGetComments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testRenameFile.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Gist.testStarring.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GistComment.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GistComment.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GistComment.testEdit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitBlob.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitRef.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitRef.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitRef.testEdit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitRef.testEditWithForce.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitRelease.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitRelease.testGetAssets.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitRelease.testGetLatestRelease.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitRelease.testGetRelease.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GitTree.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetEmojis.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetEvents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetGists.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetGistsWithSince.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetGitignoreTemplate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetGitignoreTemplates.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetGlobalAdvisories.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetGlobalAdvisoriesByCVE.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetGlobalAdvisoriesByGHSA.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetGlobalAdvisoriesManyFilters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetHook.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetHookDeliveries.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetHookDelivery.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetHooks.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetLicense.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetLicenses.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetOrganizations.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetOrganizationsSince.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetRepoFromFullName.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetRepoFromId.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetRepos.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetReposSince.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetRepositoryDiscussion.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetUserById.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetUsers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testGetUsersSince.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testSearchRepos.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testSearchUserByEmail.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Github.testSearchUsers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubApp.testGetAuthenticatedApp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testAppAuth.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testDeprecatedAppAuth.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetAccessToken.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetAccessTokenForNoInstallation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithExpiredJWT.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidData.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidPermissions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetApp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetAppInstallation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetGithubForInstallation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetInstallationNotFound.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetInstallationWithExpiredJWT.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetInstallations.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetOrgInstallation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetRepoInstallation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GithubIntegration.testGetUserInstallation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GlobalAdvisory.testNewlyReleased.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testDefaultUrl.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testMutation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testMutationClass.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testNode.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testNodeClass.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testOtherPort.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testOtherUrl.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testPaginationAndRestIntegration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testQuery.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testQueryGraphQlClass.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/GraphQl.testQueryRestClass.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Hook.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Hook.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Hook.testEditWithAllParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Hook.testEditWithMinimalParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Hook.testPing.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Hook.testTest.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Installation.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Installation.testGetGithubForInstallation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Installation.testGetRepos.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue131.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue131.testGetPullWithOrgHeadUser.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue131.testGetPullsWithOrgHeadUser.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue133.testGetPageWithoutInitialArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue134.testGetAuthorizationsFailsWhenAutenticatedThroughOAuth.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue134.testGetAuthorizationsSucceedsWhenAutenticatedThroughLoginPassword.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue134.testGetOAuthScopesFromHeader.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue139.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue139.testCompletion.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue140.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue140.testGetDirContents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue140.testGetDirContentsThenLazyCompletionOfFile.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue140.testGetDirContentsWithRef.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue140.testGetFileContents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue142.testDecodeJson.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue214.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue214.testAssignees.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue214.testCollaborators.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue214.testCreateIssue.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue214.testEditIssue.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue214.testGetIssues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue216.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue216.testIteration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue278.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue278.testIteration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue33.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue33.testClosedIssues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue33.testOpenIssues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue494.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.testAddLabelToIssue.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.testCreateIssueWithLabel.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.testCreateLabel.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.testGetIssuesWithLabel.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.testGetLabel.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.testGetLabels.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.testIssueGetLabels.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.testRemoveLabelFromIssue.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue50.testSetIssueLabels.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue54.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue54.testConversion.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue572.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue572.testIssueAsPullRequest.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue572.testPullReqeustAsIssue.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterprise.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterpriseWithPort.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue823.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue823.testGetPendingInvitationAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue87.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInBody.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInTitle.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue87.testCreateIssueWithPercentInBody.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue87.testCreateIssueWithPercentInTitle.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue937.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue937.testCollaboratorsAffiliation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue945.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Issue945.testReservedPaginatedListAttributePreservation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/LazyRepository.testGetUser.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Logging.testLoggingWithBaseUrl.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Logging.testLoggingWithBasicAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Logging.testLoggingWithOAuthAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Logging.testLoggingWithoutAuthentication.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Markdown.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Markdown.testRenderGithubFlavoredMarkdown.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Markdown.testRenderMarkdown.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Migration.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Migration.testGetArchiveUrlWhenDeleted.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Migration.testGetArchiveUrlWhenExported.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Migration.testGetArchiveUrlWhenNotExported.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Migration.testGetStatus.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Migration.testUnlockRepo.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testAttributesOfOtherUser.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetEvents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetFollowers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetFollowing.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetGists.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetKeys.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetOrganizationMembership.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetOrganizationMembershipNotMember.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetOrgs.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetPublicEvents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetPublicReceivedEvents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetReceivedEvents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetRepo.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetRepos.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetReposWithAllArgs.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetStarred.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetSubscriptions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testGetWatched.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testHasInFollowing.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser.testUserEquality.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser1430.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/NamedUser1430.testGetProjects.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Notification.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Notification.testMarkAsDone.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Notification.testMarkAsRead.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testAddMembersAdminRole.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testAddMembersDefaultRole.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateActionsSecret.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateCustomProperties.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateCustomProperty.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateCustomPropertyValues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateDependabotSecret.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateDependabotSecretSelected.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateFork.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateHookWithAllParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateHookWithMinimalParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateMigration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateRepoFromTemplate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateRepoWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateRepoWithMinimalArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateRepositoryWithAutoInit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateSecretSelected.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateTeam.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateTeamWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateVariable.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testCreateVariableSelected.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testDeleteHook.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testEditHookWithAllParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testEditHookWithMinimalParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testEditWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testEditWithoutArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetCustomProperties.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetCustomProperty.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetDependabotAlerts.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetDependabotAlertsWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetDependabotSecrets.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetEvents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetHook.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetHookDeliveries.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetHookDelivery.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetHooks.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetInstallations.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetIssues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetIssuesWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetMembers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetMigrations.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetOutsideCollaborators.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetPublicMembers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetRepos.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetReposSorted.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetReposWithType.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetSecret.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetSecrets.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetTeamBySlug.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetTeams.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetVariable.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testGetVariables.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testInviteUserAsNonOwner.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testInviteUserByEmail.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testInviteUserByName.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testInviteUserWithBoth.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testInviteUserWithRoleAndTeam.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testIssue2030CreateProject.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testListCustomPropertyValues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testMembers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testOrgGetSecretAssertion.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testOrgSecretEdit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testOrgVariable.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testOutsideCollaborators.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testPublicMembers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization.testRemoveCustomProperty.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization1437.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization1437.testCreateProject.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization2072.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Organization2072.testCancelInvitation.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/OrganizationHasInMembers.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testCustomPerPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testCustomPerPageIteration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testCustomPerPageReversedIteration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testCustomPerPageWithGetPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testCustomPerPageWithNoUrlParams2.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testGetFirstPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testGetThirdPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testGettingTheReversedListDoesNotModifyTheOriginalList.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testGraphQlPagination.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testIntIndexingAfterIteration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testIntIndexingInFirstPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testIntIndexingInThirdPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testInterruptedIteration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testInterruptedIterationInSlice.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testIteration.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testIterationWithPrefetchedFirstPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testNoFirstPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testReversedIterationSupportsIterator.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testReversedIterationWithMultiplePages.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testReversedIterationWithSinglePage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testSeveralIterations.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testSliceIndexingInFirstPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testSliceIndexingUntilEnd.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testSliceIndexingUntilFourthPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testTotalCountWithDictionary.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PaginatedList.testTotalCountWithNoLastPage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Permissions.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Persistence.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Persistence.testLoadAndUpdate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSize.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSizeHttp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Project.testGetOrganizationProjects.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Project.testGetRepositoryProjects.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Project1434.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Project1434.testEditWithAllParameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Project1434.testEditWithoutParameters.txt +0 -0
- /pygithub-2.5.0/tests/ReplayData/Project.testCreateCardFromIssue.txt → /pygithub-2.6.1/tests/ReplayData/ProjectCard.testCreateFromIssue.txt +0 -0
- /pygithub-2.5.0/tests/ReplayData/Project.testCreateCardWithNote.txt → /pygithub-2.6.1/tests/ReplayData/ProjectCard.testCreateWithNote.txt +0 -0
- /pygithub-2.5.0/tests/ReplayData/Project.testGetAllProjectCards.txt → /pygithub-2.6.1/tests/ReplayData/ProjectCard.testGetAll.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testCreateCard.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testEdit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testGetAllCards.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testGetArchivedCards.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testGetCards.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testGetNotArchivedCards.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testGetProjectColumn.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testMoveAfter.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testMoveFirst.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ProjectColumn.testMoveLast.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PublicKey.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PublicKey.testAttributes_with_int_key_id.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testAddAndRemoveAssignees.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testAddAndRemoveLabels.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testAddAndRemoveLabelsWithStringArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testCreateComment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testCreateIssueComment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testCreateMultilineReviewComment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentAsSuggestion.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentChoosingSide.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testCreateReviewCommentInReplyTo.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testCreateReviewCommentSubjectType.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testDeleteAndSetLabels.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testDeleteAndSetLabelsWithStringArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testDeleteBranch.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testDeleteOnMerge.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testDisableAutomerge.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testEditWithAllArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testEditWithoutArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testEnableAutomerge.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testEnableAutomergeDefaultValues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testEnableAutomergeError.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testForceDeleteBranch.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testGetComments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testGetCommits.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testGetFiles.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testGetIssueComment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testGetIssueComments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testGetIssueEvents.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testGetLabels.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testGetReviewComments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testMerge.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testMergeWithCommitMessage.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testRestoreBranch.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest.testUpdateBranch.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1168.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1168.testGetIssue.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1168.testGetPullRequest.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1169.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1169.testReviewApproveWithoutBody.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1375.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1375.testCreateReviewCommentReply.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1682.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1682.test_no_parameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1682.test_object_parameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1682.test_string_parameters.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1684.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1684.testDeleteRunnerId.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1684.testDeleteRunnerObject.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest1684.testGetRunners.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest2408.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequest2408.test_get_workflow_runs.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequestFile.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequestReview.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequestReview.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequestReview.testDismiss.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequestReview.testEdit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequestReview1856.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/PullRequestReview1856.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RateLimiting.testRateLimiting.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RateLimiting.testResetTime.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RawData.testCompletedObject.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RawData.testNonCompletableObject.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RawData.testNotYetCompletedObject.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Reaction.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Reaction.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Reaction.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseAsset.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseAsset.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseAsset.testUpdate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseModify.testCreateGitTagAndRelease.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseModify.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseModify.testUpdate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseModify.testUploadAsset.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseModify.testUploadAssetFileLike.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseModify.testUploadAssetFromMemory.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseModify.testUploadAssetWithName.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseRead.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseRead.testGetAssets.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseRead.testGetLatestRelease.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/ReleaseRead.testGetRelease.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testCreateRepoActionsSecret.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testCreateRepoDependabotSecret.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testCreateSourceImport.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetDiscussion.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetDiscussions.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetDiscussionsByAnswered.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetDiscussionsByCategory.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetDiscussionsByStates.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetMatchingRefs.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetRepositoryWith301Redirect.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetSourceImport.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetStargazersWithDates.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetTeams.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetWorkflowId.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetWorkflowRuns.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetWorkflowRunsCreated.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testGetWorkflows.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testMarkNotificationsAsRead.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testRepoGetSecretAssertion.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testRepoSecrets.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Repository.testRepoVariables.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.testAddVulnerability.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.testCreateRepositoryAdvisory.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.testGetAdvisories.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.testOfferCredit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.testOfferCredits.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.testRemoveCredit.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.testRepositoryWithNoAdvisories.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.testUpdateRepositoryAdvisory.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryAdvisory.testUpdateSingleFieldDoesNotRemoveOtherFields.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryDiscussion.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryDiscussion.testAddAndDeleteComment.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryDiscussion.testGetComments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryDiscussion.testGetCommentsWithoutNodeId.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryKey.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RepositoryKey.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Requester.testBaseUrlHostRedirection.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Requester.testBaseUrlPortRedirection.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Requester.testBaseUrlPrefixRedirection.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Requester.testBaseUrlSchemeRedirection.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Requester.testLoggingRedirection.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RequesterThrottled.testShouldDeferRequests.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RequesterThrottled.testShouldDeferWrites.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RequesterUnThrottled.testShouldNotDeferRequests.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RequiredPullRequestReviews.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RequiredPullRequestReviews.testOrganizationOwnedTeam.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/RequiredStatusChecks.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Retry.testRaisesRetryErrorAfterMaxRetries.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Retry.testReturnsRepoAfter1Retry.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Retry.testReturnsRepoAfter3Retries.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Retry.testReturnsRepoAfterSettingRetryHttp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Retry.testShouldNotRetryWhenStatusNotOnList.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testGetPageOnSearchUsers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testPaginateSearchTopics.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testPaginateSearchUsers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testSearchCode.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testSearchHighlightingCode.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testSearchIssues.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testSearchRepos.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testSearchReposWithNoResults.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testSearchTopics.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testSearchUsers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testUrlquotingOfQualifiers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Search.testUrlquotingOfQuery.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SelfHostedActionsRunner.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SelfHostedActionsRunner.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SourceImport.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SourceImport.testUpdate.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SpecificExceptions.test2FARequired.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SpecificExceptions.testAuthenticatedRateLimitExceeded.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SpecificExceptions.testBadCredentials.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SpecificExceptions.testBadUserAgent.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SpecificExceptions.testRateLimitExceeded.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/SpecificExceptions.testUnknownObject.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Traffic.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Traffic.testGetClones.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Traffic.testGetPaths.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Traffic.testGetReferrers.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Traffic.testGetViews.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/UserKey.testDelete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.testCreateDispatchForNonTriggerEnabled.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.testCreateDispatchWithBranch.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.testCreateDispatchWithString.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.testCreateDispatchWithTag.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.testGetRunsWithCreated.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.testGetRunsWithHeadSha.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.testGetRunsWithNoArguments.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.testGetRunsWithObjects.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/Workflow.testGetRunsWithStrings.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowJob.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowJob.testAttributes.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowRun.setUp.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowRun.test_cancel.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowRun.test_delete.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowRun.test_jobs.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowRun.test_rerun.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowRun.test_rerun_failed_jobs.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowRun.test_rerun_with_successful_run.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/ReplayData/WorkflowRun.test_timing.txt +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/RepositoryDiscussion.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/RequiredPullRequestReviews.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/RequiredStatusChecks.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/WorkflowJob.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/__init__.py +0 -0
- {pygithub-2.5.0 → pygithub-2.6.1}/tests/conftest.py +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
changelog:
|
|
2
|
+
exclude:
|
|
3
|
+
labels: []
|
|
4
|
+
authors: []
|
|
5
|
+
categories:
|
|
6
|
+
- title: Breaking Changes
|
|
7
|
+
labels: ['breaking']
|
|
8
|
+
- title: New Features
|
|
9
|
+
labels: ['feature']
|
|
10
|
+
- title: Improvement
|
|
11
|
+
labels: ['improvement']
|
|
12
|
+
- title: Bug Fixes
|
|
13
|
+
labels: ['bugfix']
|
|
14
|
+
- title: Dependencies
|
|
15
|
+
labels: ['dependencies']
|
|
16
|
+
- title: Maintenance
|
|
17
|
+
labels: ['ci', 'documentation', 'maintenance']
|
|
18
|
+
- title: Others
|
|
19
|
+
labels: ['*']
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- main
|
|
6
|
+
- release-v*
|
|
7
|
+
pull_request:
|
|
8
|
+
merge_group:
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
|
|
12
|
+
build:
|
|
13
|
+
uses: "./.github/workflows/_build-pkg.yml"
|
|
14
|
+
with:
|
|
15
|
+
artifact-name: package
|
|
16
|
+
|
|
17
|
+
test:
|
|
18
|
+
runs-on: ${{ matrix.os }}
|
|
19
|
+
name: test (Python ${{ matrix.python-version }} on ${{ matrix.os-label }})
|
|
20
|
+
strategy:
|
|
21
|
+
fail-fast: false
|
|
22
|
+
matrix:
|
|
23
|
+
# keep in sync with tox.ini [gh-actions] section
|
|
24
|
+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
25
|
+
os: ["ubuntu-latest"]
|
|
26
|
+
os-label: ["Ubuntu"]
|
|
27
|
+
include:
|
|
28
|
+
- {python-version: "3.8", os: "windows-latest", os-label: "Windows"}
|
|
29
|
+
- {python-version: "3.8", os: "macos-latest", os-label: "macOS"}
|
|
30
|
+
steps:
|
|
31
|
+
- uses: actions/checkout@v3
|
|
32
|
+
- name: Set up Python
|
|
33
|
+
uses: actions/setup-python@v4
|
|
34
|
+
with:
|
|
35
|
+
python-version: "${{ matrix.python-version }}"
|
|
36
|
+
- name: Install tox
|
|
37
|
+
run: |
|
|
38
|
+
python -m pip install --upgrade pip
|
|
39
|
+
pip install tox tox-gh-actions
|
|
40
|
+
- name: Run tests
|
|
41
|
+
run: tox
|
|
42
|
+
- name: Upload Test Results
|
|
43
|
+
if: always()
|
|
44
|
+
uses: actions/upload-artifact@v4
|
|
45
|
+
with:
|
|
46
|
+
name: Test Results (Python ${{ matrix.python-version }} on ${{ matrix.os-label }})
|
|
47
|
+
path: pytest.xml
|
|
48
|
+
- name: Upload coverage to Codecov
|
|
49
|
+
uses: codecov/codecov-action@v3
|
|
50
|
+
|
|
51
|
+
test_success:
|
|
52
|
+
# this aggregates success state of all jobs listed in `needs`
|
|
53
|
+
# this is the only required check to pass CI
|
|
54
|
+
name: "Test success"
|
|
55
|
+
if: always()
|
|
56
|
+
runs-on: ubuntu-latest
|
|
57
|
+
needs: [test]
|
|
58
|
+
steps:
|
|
59
|
+
- name: "Success"
|
|
60
|
+
if: needs.test.result == 'success'
|
|
61
|
+
run: true
|
|
62
|
+
shell: bash
|
|
63
|
+
- name: "Failure"
|
|
64
|
+
if: needs.test.result != 'success'
|
|
65
|
+
run: false
|
|
66
|
+
shell: bash
|
|
67
|
+
|
|
68
|
+
event_file:
|
|
69
|
+
name: "Event File"
|
|
70
|
+
runs-on: ubuntu-latest
|
|
71
|
+
steps:
|
|
72
|
+
- name: Upload
|
|
73
|
+
uses: actions/upload-artifact@v4
|
|
74
|
+
with:
|
|
75
|
+
name: Event File
|
|
76
|
+
path: ${{ github.event_path }}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
tags: ["*"] # this will run full workflow including publish to PyPI
|
|
5
|
+
workflow_dispatch:
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
build:
|
|
9
|
+
uses: "./.github/workflows/_build-pkg.yml"
|
|
10
|
+
with:
|
|
11
|
+
artifact-name: package
|
|
12
|
+
|
|
13
|
+
publish:
|
|
14
|
+
needs: [build]
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/download-artifact@v4
|
|
18
|
+
with:
|
|
19
|
+
name: package
|
|
20
|
+
path: dist
|
|
21
|
+
- name: Install twine
|
|
22
|
+
run: pip install -U "twine>=6.1.0" "packaging>=24.2"
|
|
23
|
+
- name: Publish 📦 to PyPI
|
|
24
|
+
# only run this for tags
|
|
25
|
+
if: startsWith(github.event.ref, 'refs/tags/')
|
|
26
|
+
env:
|
|
27
|
+
TWINE_USERNAME: __token__
|
|
28
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
|
29
|
+
run: twine upload dist/*
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
name: Test Results
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_run:
|
|
5
|
+
workflows: ["CI"]
|
|
6
|
+
types:
|
|
7
|
+
- completed
|
|
8
|
+
permissions: {}
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
test-results:
|
|
12
|
+
name: Test Results
|
|
13
|
+
if: github.event.workflow_run.conclusion != 'skipped'
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
permissions:
|
|
16
|
+
checks: write
|
|
17
|
+
pull-requests: write
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- name: Download and Extract Artifacts
|
|
21
|
+
uses: dawidd6/action-download-artifact@e7466d1a7587ed14867642c2ca74b5bcc1e19a2d
|
|
22
|
+
with:
|
|
23
|
+
run_id: ${{ github.event.workflow_run.id }}
|
|
24
|
+
path: artifacts
|
|
25
|
+
|
|
26
|
+
- name: Publish Test Results
|
|
27
|
+
id: test-results
|
|
28
|
+
uses: EnricoMi/publish-unit-test-result-action@v2
|
|
29
|
+
with:
|
|
30
|
+
commit: ${{ github.event.workflow_run.head_sha }}
|
|
31
|
+
event_file: artifacts/Event File/event.json
|
|
32
|
+
event_name: ${{ github.event.workflow_run.event }}
|
|
33
|
+
files: "artifacts/**/*.xml"
|
pygithub-2.6.1/PKG-INFO
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: PyGithub
|
|
3
|
+
Version: 2.6.1
|
|
4
|
+
Summary: Use the full Github API v3
|
|
5
|
+
Author-email: Vincent Jacques <vincent@vincent-jacques.net>
|
|
6
|
+
Project-URL: Documentation, https://pygithub.readthedocs.io/en/stable/
|
|
7
|
+
Project-URL: Source, https://github.com/pygithub/pygithub
|
|
8
|
+
Project-URL: Tracker, https://github.com/pygithub/pygithub/issues
|
|
9
|
+
Keywords: github
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Web Environment
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Topic :: Software Development
|
|
23
|
+
Requires-Python: >=3.8
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: COPYING
|
|
26
|
+
License-File: COPYING.LESSER
|
|
27
|
+
Requires-Dist: pynacl>=1.4.0
|
|
28
|
+
Requires-Dist: requests>=2.14.0
|
|
29
|
+
Requires-Dist: pyjwt[crypto]>=2.4.0
|
|
30
|
+
Requires-Dist: typing-extensions>=4.0.0
|
|
31
|
+
Requires-Dist: urllib3>=1.26.0
|
|
32
|
+
Requires-Dist: Deprecated
|
|
33
|
+
Provides-Extra: integrations
|
|
34
|
+
|
|
35
|
+
# PyGitHub
|
|
36
|
+
|
|
37
|
+
[](https://pypi.python.org/pypi/PyGithub)
|
|
38
|
+

|
|
39
|
+
[](https://pygithub.readthedocs.io/en/stable/?badge=stable)
|
|
40
|
+
[](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License)
|
|
41
|
+
[](https://join.slack.com/t/pygithub-project/shared_invite/zt-duj89xtx-uKFZtgAg209o6Vweqm8xeQ)
|
|
42
|
+
[](https://www.codetriage.com/pygithub/pygithub)
|
|
43
|
+
[](https://codecov.io/gh/PyGithub/PyGithub)
|
|
44
|
+
[](https://github.com/psf/black)
|
|
45
|
+
|
|
46
|
+
PyGitHub is a Python library to access the [GitHub REST API].
|
|
47
|
+
This library enables you to manage [GitHub] resources such as repositories, user profiles, and organizations in your Python applications.
|
|
48
|
+
|
|
49
|
+
[GitHub REST API]: https://docs.github.com/en/rest
|
|
50
|
+
[GitHub]: https://github.com
|
|
51
|
+
|
|
52
|
+
## Install
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
pip install PyGithub
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Simple Demo
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
from github import Github
|
|
62
|
+
|
|
63
|
+
# Authentication is defined via github.Auth
|
|
64
|
+
from github import Auth
|
|
65
|
+
|
|
66
|
+
# using an access token
|
|
67
|
+
auth = Auth.Token("access_token")
|
|
68
|
+
|
|
69
|
+
# First create a Github instance:
|
|
70
|
+
|
|
71
|
+
# Public Web Github
|
|
72
|
+
g = Github(auth=auth)
|
|
73
|
+
|
|
74
|
+
# Github Enterprise with custom hostname
|
|
75
|
+
g = Github(base_url="https://{hostname}/api/v3", auth=auth)
|
|
76
|
+
|
|
77
|
+
# Then play with your Github objects:
|
|
78
|
+
for repo in g.get_user().get_repos():
|
|
79
|
+
print(repo.name)
|
|
80
|
+
|
|
81
|
+
# To close connections after use
|
|
82
|
+
g.close()
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Documentation
|
|
86
|
+
|
|
87
|
+
More information can be found on the [PyGitHub documentation site.](https://pygithub.readthedocs.io/en/stable/introduction.html)
|
|
88
|
+
|
|
89
|
+
## Development
|
|
90
|
+
|
|
91
|
+
### Contributing
|
|
92
|
+
|
|
93
|
+
Long-term discussion and bug reports are maintained via GitHub Issues.
|
|
94
|
+
Code review is done via GitHub Pull Requests.
|
|
95
|
+
|
|
96
|
+
For more information read [CONTRIBUTING.md].
|
|
97
|
+
|
|
98
|
+
[CONTRIBUTING.md]: https://github.com/PyGithub/PyGithub/blob/main/CONTRIBUTING.md
|
|
99
|
+
|
|
100
|
+
### Maintainership
|
|
101
|
+
|
|
102
|
+
We're actively seeking maintainers that will triage issues and pull requests and cut releases.
|
|
103
|
+
If you work on a project that leverages PyGitHub and have a vested interest in keeping the code alive and well, send an email to someone in the MAINTAINERS file.
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: PyGithub
|
|
3
|
+
Version: 2.6.1
|
|
4
|
+
Summary: Use the full Github API v3
|
|
5
|
+
Author-email: Vincent Jacques <vincent@vincent-jacques.net>
|
|
6
|
+
Project-URL: Documentation, https://pygithub.readthedocs.io/en/stable/
|
|
7
|
+
Project-URL: Source, https://github.com/pygithub/pygithub
|
|
8
|
+
Project-URL: Tracker, https://github.com/pygithub/pygithub/issues
|
|
9
|
+
Keywords: github
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Web Environment
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Topic :: Software Development
|
|
23
|
+
Requires-Python: >=3.8
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: COPYING
|
|
26
|
+
License-File: COPYING.LESSER
|
|
27
|
+
Requires-Dist: pynacl>=1.4.0
|
|
28
|
+
Requires-Dist: requests>=2.14.0
|
|
29
|
+
Requires-Dist: pyjwt[crypto]>=2.4.0
|
|
30
|
+
Requires-Dist: typing-extensions>=4.0.0
|
|
31
|
+
Requires-Dist: urllib3>=1.26.0
|
|
32
|
+
Requires-Dist: Deprecated
|
|
33
|
+
Provides-Extra: integrations
|
|
34
|
+
|
|
35
|
+
# PyGitHub
|
|
36
|
+
|
|
37
|
+
[](https://pypi.python.org/pypi/PyGithub)
|
|
38
|
+

|
|
39
|
+
[](https://pygithub.readthedocs.io/en/stable/?badge=stable)
|
|
40
|
+
[](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License)
|
|
41
|
+
[](https://join.slack.com/t/pygithub-project/shared_invite/zt-duj89xtx-uKFZtgAg209o6Vweqm8xeQ)
|
|
42
|
+
[](https://www.codetriage.com/pygithub/pygithub)
|
|
43
|
+
[](https://codecov.io/gh/PyGithub/PyGithub)
|
|
44
|
+
[](https://github.com/psf/black)
|
|
45
|
+
|
|
46
|
+
PyGitHub is a Python library to access the [GitHub REST API].
|
|
47
|
+
This library enables you to manage [GitHub] resources such as repositories, user profiles, and organizations in your Python applications.
|
|
48
|
+
|
|
49
|
+
[GitHub REST API]: https://docs.github.com/en/rest
|
|
50
|
+
[GitHub]: https://github.com
|
|
51
|
+
|
|
52
|
+
## Install
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
pip install PyGithub
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Simple Demo
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
from github import Github
|
|
62
|
+
|
|
63
|
+
# Authentication is defined via github.Auth
|
|
64
|
+
from github import Auth
|
|
65
|
+
|
|
66
|
+
# using an access token
|
|
67
|
+
auth = Auth.Token("access_token")
|
|
68
|
+
|
|
69
|
+
# First create a Github instance:
|
|
70
|
+
|
|
71
|
+
# Public Web Github
|
|
72
|
+
g = Github(auth=auth)
|
|
73
|
+
|
|
74
|
+
# Github Enterprise with custom hostname
|
|
75
|
+
g = Github(base_url="https://{hostname}/api/v3", auth=auth)
|
|
76
|
+
|
|
77
|
+
# Then play with your Github objects:
|
|
78
|
+
for repo in g.get_user().get_repos():
|
|
79
|
+
print(repo.name)
|
|
80
|
+
|
|
81
|
+
# To close connections after use
|
|
82
|
+
g.close()
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Documentation
|
|
86
|
+
|
|
87
|
+
More information can be found on the [PyGitHub documentation site.](https://pygithub.readthedocs.io/en/stable/introduction.html)
|
|
88
|
+
|
|
89
|
+
## Development
|
|
90
|
+
|
|
91
|
+
### Contributing
|
|
92
|
+
|
|
93
|
+
Long-term discussion and bug reports are maintained via GitHub Issues.
|
|
94
|
+
Code review is done via GitHub Pull Requests.
|
|
95
|
+
|
|
96
|
+
For more information read [CONTRIBUTING.md].
|
|
97
|
+
|
|
98
|
+
[CONTRIBUTING.md]: https://github.com/PyGithub/PyGithub/blob/main/CONTRIBUTING.md
|
|
99
|
+
|
|
100
|
+
### Maintainership
|
|
101
|
+
|
|
102
|
+
We're actively seeking maintainers that will triage issues and pull requests and cut releases.
|
|
103
|
+
If you work on a project that leverages PyGitHub and have a vested interest in keeping the code alive and well, send an email to someone in the MAINTAINERS file.
|