├── .env.template ├── .fmf └── version ├── .git_archival.txt ├── .gitattributes ├── .gitchangelog.rc ├── .github ├── stale.yml └── workflows │ ├── check-release-notes.yml │ ├── do-release.yml │ ├── docs.yml │ ├── opened-issues-to-the-board.yml │ ├── opened-prs-to-the-board.yml │ ├── prepare-release.yml │ └── pypi-publish.yml ├── .gitignore ├── .packit.yaml ├── .pre-commit-config.yaml ├── .prettierignore ├── .zuul.yaml ├── CHANGELOG.md ├── COMPATIBILITY.md ├── CONTRIBUTING.md ├── Containerfile.tests ├── DCO ├── LICENSE ├── LICENSE_HEADER.txt ├── Makefile ├── README.md ├── examples ├── README.md ├── img │ ├── closed_issue.png │ ├── new_issue.png │ └── newly_created_project.png ├── list_pr_patches.ipynb ├── list_prs_since_release.ipynb ├── releases.ipynb ├── syncing_labels.ipynb ├── user_owned_repositories.ipynb └── working_with_issues.ipynb ├── fedora └── python-ogr.spec ├── files ├── local-tests-requirements.yaml ├── packit-testing-farm-prepare.yaml ├── tasks │ ├── build-rpm-deps.yaml │ ├── configure-git.yaml │ ├── generic-dnf-requirements.yaml │ ├── install-ogr.yaml │ ├── install-requre.yaml │ ├── packit-requirements.yaml │ ├── packit-tests.yaml │ ├── project-dir.yaml │ ├── python-compile-deps.yaml │ └── rpm-test-deps.yaml ├── zuul-install-requirements-pip.yaml ├── zuul-install-requirements-rpms.yaml ├── zuul-reverse-dep-packit.yaml └── zuul-tests.yaml ├── markdown.tpl ├── ogr ├── __init__.py ├── abstract │ ├── __init__.py │ ├── abstract_class.py │ ├── access_level.py │ ├── auth_method.py │ ├── comment.py │ ├── commit_flag.py │ ├── exception.py │ ├── git_project.py │ ├── git_service.py │ ├── git_tag.py │ ├── git_user.py │ ├── issue.py │ ├── label.py │ ├── pull_request.py │ ├── release.py │ └── status.py ├── constant.py ├── deprecation.py ├── exceptions.py ├── factory.py ├── parsing.py ├── py.typed ├── read_only.py ├── services │ ├── __init__.py │ ├── base.py │ ├── forgejo │ │ ├── __init__.py │ │ ├── flag.py │ │ ├── issue.py │ │ ├── label.py │ │ ├── project.py │ │ ├── pull_request.py │ │ ├── release.py │ │ ├── service.py │ │ ├── user.py │ │ └── utils.py │ ├── github │ │ ├── __init__.py │ │ ├── auth_providers │ │ │ ├── __init__.py │ │ │ ├── abstract.py │ │ │ ├── github_app.py │ │ │ ├── token.py │ │ │ └── tokman.py │ │ ├── check_run.py │ │ ├── comments.py │ │ ├── flag.py │ │ ├── issue.py │ │ ├── label.py │ │ ├── project.py │ │ ├── pull_request.py │ │ ├── release.py │ │ ├── service.py │ │ └── user.py │ ├── gitlab │ │ ├── __init__.py │ │ ├── comments.py │ │ ├── flag.py │ │ ├── issue.py │ │ ├── label.py │ │ ├── project.py │ │ ├── pull_request.py │ │ ├── release.py │ │ ├── service.py │ │ └── user.py │ └── pagure │ │ ├── __init__.py │ │ ├── comments.py │ │ ├── flag.py │ │ ├── group.py │ │ ├── issue.py │ │ ├── label.py │ │ ├── project.py │ │ ├── pull_request.py │ │ ├── release.py │ │ ├── service.py │ │ └── user.py └── utils.py ├── plans ├── README.md ├── full.fmf ├── main.fmf ├── packit-integration.fmf ├── rpmlint.fmf └── smoke.fmf ├── pyproject.toml ├── release-conf.yaml ├── tests ├── __init__.py ├── full.fmf ├── integration │ ├── __init__.py │ ├── conftest.py │ ├── factory │ │ ├── __init__.py │ │ ├── test_data │ │ │ └── test_factory │ │ │ │ ├── FactoryTests.test_get_project_forgejo.yaml │ │ │ │ ├── FactoryTests.test_get_project_github.yaml │ │ │ │ ├── FactoryTests.test_get_project_gitlab.yaml │ │ │ │ └── FactoryTests.test_get_project_pagure.yaml │ │ └── test_factory.py │ ├── forgejo │ │ ├── README.md │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_data │ │ │ ├── test_generic_commands │ │ │ │ ├── test_get_commit_statuses.yaml │ │ │ │ └── test_set_commit_status.yaml │ │ │ ├── test_project │ │ │ │ ├── test_add_remove_user.yaml │ │ │ │ ├── test_branches.yaml │ │ │ │ ├── test_commits.yaml │ │ │ │ ├── test_delete.yaml │ │ │ │ ├── test_description_property.yaml │ │ │ │ ├── test_description_setter.yaml │ │ │ │ ├── test_full_repo_name.yaml │ │ │ │ ├── test_get_contributors.yaml │ │ │ │ ├── test_get_description.yaml │ │ │ │ ├── test_get_file.yaml │ │ │ │ ├── test_get_file_content.yaml │ │ │ │ ├── test_get_file_content_resolve_dot.yaml │ │ │ │ ├── test_get_files.yaml │ │ │ │ ├── test_get_git_urls.yaml │ │ │ │ ├── test_get_owners.yaml │ │ │ │ ├── test_get_sha_from_branch.yaml │ │ │ │ ├── test_get_sha_from_branch_non_existing.yaml │ │ │ │ ├── test_get_sha_from_tag.yaml │ │ │ │ ├── test_get_users_with_given_access.yaml │ │ │ │ ├── test_get_web_url.yaml │ │ │ │ ├── test_has_issues.yaml │ │ │ │ ├── test_is_not_private.yaml │ │ │ │ ├── test_is_private.yaml │ │ │ │ ├── test_issue_permissions.yaml │ │ │ │ ├── test_nonexisting_file.yaml │ │ │ │ ├── test_parent_project.yaml │ │ │ │ ├── test_pr_permissions.yaml │ │ │ │ ├── test_project_exists.yaml │ │ │ │ └── test_project_not_exists.yaml │ │ │ ├── test_pull_request │ │ │ │ ├── test_commits_url.yaml │ │ │ │ ├── test_get_all_pr_commits.yaml │ │ │ │ ├── test_head_commit.yaml │ │ │ │ ├── test_merge_commit_sha.yaml │ │ │ │ ├── test_pr_create_fork_fork.yaml │ │ │ │ ├── test_pr_create_upstream_fork.yaml │ │ │ │ ├── test_pr_create_upstream_forkusername.yaml │ │ │ │ ├── test_pr_create_upstream_upstream.yaml │ │ │ │ ├── test_pr_info.yaml │ │ │ │ ├── test_pr_labels.yaml │ │ │ │ ├── test_pr_list.yaml │ │ │ │ ├── test_pr_not_exists.yaml │ │ │ │ ├── test_pr_patch.yaml │ │ │ │ ├── test_setters.yaml │ │ │ │ ├── test_source_project.yaml │ │ │ │ ├── test_source_project_fork.yaml │ │ │ │ └── test_target_branch_head_commit.yaml │ │ │ ├── test_release │ │ │ │ ├── test_create_release.yaml │ │ │ │ ├── test_edit_release.yaml │ │ │ │ ├── test_get_release.yaml │ │ │ │ ├── test_get_releases.yaml │ │ │ │ ├── test_latest_release.yaml │ │ │ │ └── test_latest_release_doesnt_exist.yaml │ │ │ ├── test_service │ │ │ │ └── test_project_create.yaml │ │ │ └── test_user │ │ │ │ ├── test_email.yaml │ │ │ │ ├── test_get_email.yaml │ │ │ │ ├── test_get_forks.yaml │ │ │ │ ├── test_get_projects.yaml │ │ │ │ └── test_username.yaml │ │ ├── test_generic_commands.py │ │ ├── test_project.py │ │ ├── test_pull_request.py │ │ ├── test_release.py │ │ ├── test_service.py │ │ └── test_user.py │ ├── github │ │ ├── __init__.py │ │ ├── base.py │ │ ├── base_app.py │ │ ├── test_app.py │ │ ├── test_check_run.py │ │ ├── test_comments.py │ │ ├── test_data │ │ │ ├── test_app │ │ │ │ ├── App.test_get_project.yaml │ │ │ │ ├── App.test_get_project_having_key_as_path.yaml │ │ │ │ ├── App.test_github_proj_no_app_creds.yaml │ │ │ │ ├── App.test_private_key.yaml │ │ │ │ └── App.test_private_key_path.yaml │ │ │ ├── test_check_run │ │ │ │ ├── CheckRun.test_change_name.yaml │ │ │ │ ├── CheckRun.test_change_url.yaml │ │ │ │ ├── CheckRun.test_create_completed_without_conclusion.yaml │ │ │ │ ├── CheckRun.test_create_neutral_completed.yaml │ │ │ │ ├── CheckRun.test_create_timed_out.yaml │ │ │ │ ├── CheckRun.test_create_to_queue_and_succeed.yaml │ │ │ │ ├── CheckRun.test_create_with_completed_at_without_conclusion.yaml │ │ │ │ ├── CheckRun.test_create_with_completed_without_conclusion.yaml │ │ │ │ ├── CheckRun.test_get_latest_check_run.yaml │ │ │ │ ├── CheckRun.test_get_list.yaml │ │ │ │ ├── CheckRun.test_get_list_no_runs.yaml │ │ │ │ ├── CheckRun.test_non_existing_check_runs_returns_none.yaml │ │ │ │ ├── CheckRun.test_setting_completed_at_without_conclusion.yaml │ │ │ │ └── CheckRun.test_setting_completed_without_conclusion.yaml │ │ │ ├── test_comments │ │ │ │ ├── Comments.test_get_reactions.yaml │ │ │ │ ├── Comments.test_issue_comments.yaml │ │ │ │ ├── Comments.test_issue_comments_author.yaml │ │ │ │ ├── Comments.test_issue_comments_author_regex.yaml │ │ │ │ ├── Comments.test_issue_comments_regex.yaml │ │ │ │ ├── Comments.test_issue_comments_regex_reversed.yaml │ │ │ │ ├── Comments.test_issue_comments_reversed.yaml │ │ │ │ ├── Comments.test_issue_comments_updates.yaml │ │ │ │ ├── Comments.test_issue_react_to_comment_and_delete.yaml │ │ │ │ ├── Comments.test_pr_comments.yaml │ │ │ │ ├── Comments.test_pr_comments_author.yaml │ │ │ │ ├── Comments.test_pr_comments_author_regex.yaml │ │ │ │ ├── Comments.test_pr_comments_filter.yaml │ │ │ │ ├── Comments.test_pr_comments_reversed.yaml │ │ │ │ ├── Comments.test_pr_comments_search.yaml │ │ │ │ ├── Comments.test_pr_comments_updates.yaml │ │ │ │ └── Comments.test_pr_react_to_comment_and_delete.yaml │ │ │ ├── test_forks │ │ │ │ ├── Forks.test_create_fork.yaml │ │ │ │ ├── Forks.test_create_fork_with_namespace.yaml │ │ │ │ ├── Forks.test_fork.yaml │ │ │ │ ├── Forks.test_get_fork.yaml │ │ │ │ ├── Forks.test_is_fork.yaml │ │ │ │ └── Forks.test_nonexisting_fork.yaml │ │ │ ├── test_generic_commands │ │ │ │ ├── GenericCommands.test_add_user.yaml │ │ │ │ ├── GenericCommands.test_branches.yaml │ │ │ │ ├── GenericCommands.test_commit_comment.yaml │ │ │ │ ├── GenericCommands.test_commit_flags.yaml │ │ │ │ ├── GenericCommands.test_commits.yaml │ │ │ │ ├── GenericCommands.test_delete.yaml │ │ │ │ ├── GenericCommands.test_description.yaml │ │ │ │ ├── GenericCommands.test_description_property.yaml │ │ │ │ ├── GenericCommands.test_description_setter.yaml │ │ │ │ ├── GenericCommands.test_email.yaml │ │ │ │ ├── GenericCommands.test_full_repo_name.yaml │ │ │ │ ├── GenericCommands.test_get_commit_comment.yaml │ │ │ │ ├── GenericCommands.test_get_commit_comments.yaml │ │ │ │ ├── GenericCommands.test_get_commit_statuses.yaml │ │ │ │ ├── GenericCommands.test_get_contributors.yaml │ │ │ │ ├── GenericCommands.test_get_file.yaml │ │ │ │ ├── GenericCommands.test_get_files.yaml │ │ │ │ ├── GenericCommands.test_get_owners.yaml │ │ │ │ ├── GenericCommands.test_get_sha_from_branch.yaml │ │ │ │ ├── GenericCommands.test_get_sha_from_branch_non_existing.yaml │ │ │ │ ├── GenericCommands.test_get_sha_from_tag.yaml │ │ │ │ ├── GenericCommands.test_get_tag_from_nonexisting_tag_name.yaml │ │ │ │ ├── GenericCommands.test_get_tag_from_tag_name.yaml │ │ │ │ ├── GenericCommands.test_get_tags.yaml │ │ │ │ ├── GenericCommands.test_get_web_url.yaml │ │ │ │ ├── GenericCommands.test_git_urls.yaml │ │ │ │ ├── GenericCommands.test_has_issues.yaml │ │ │ │ ├── GenericCommands.test_is_not_private.yaml │ │ │ │ ├── GenericCommands.test_is_private.yaml │ │ │ │ ├── GenericCommands.test_issue_permissions.yaml │ │ │ │ ├── GenericCommands.test_issue_permissions_cant_close.yaml │ │ │ │ ├── GenericCommands.test_nonexisting_file.yaml │ │ │ │ ├── GenericCommands.test_parent_project.yaml │ │ │ │ ├── GenericCommands.test_pr_permissions.yaml │ │ │ │ ├── GenericCommands.test_project_exists.yaml │ │ │ │ ├── GenericCommands.test_project_not_exists.yaml │ │ │ │ ├── GenericCommands.test_redirection.yaml │ │ │ │ ├── GenericCommands.test_set_commit_status.yaml │ │ │ │ ├── GenericCommands.test_set_commit_status_long_description.yaml │ │ │ │ ├── GenericCommands.test_username.yaml │ │ │ │ └── GenericCommands.test_write_access_to_repo.yaml │ │ │ ├── test_issues │ │ │ │ ├── Issues.test_create_issue.yaml │ │ │ │ ├── Issues.test_create_issue_with_assignee.yaml │ │ │ │ ├── Issues.test_create_private_issue.yaml │ │ │ │ ├── Issues.test_create_with_disabled_issues.yaml │ │ │ │ ├── Issues.test_functions_fail_for_pr.yaml │ │ │ │ ├── Issues.test_get_comment.yaml │ │ │ │ ├── Issues.test_issue_assignees.yaml │ │ │ │ ├── Issues.test_issue_info.yaml │ │ │ │ ├── Issues.test_issue_labels.yaml │ │ │ │ ├── Issues.test_issue_list.yaml │ │ │ │ ├── Issues.test_issue_list_assignee.yaml │ │ │ │ ├── Issues.test_issue_list_author.yaml │ │ │ │ ├── Issues.test_issue_list_labels.yaml │ │ │ │ ├── Issues.test_issue_list_nonexisting_author.yaml │ │ │ │ ├── Issues.test_issue_no_such_assignee.yaml │ │ │ │ ├── Issues.test_issue_not_exists.yaml │ │ │ │ ├── Issues.test_issue_updates.yaml │ │ │ │ ├── Issues.test_issue_without_label.yaml │ │ │ │ ├── Issues.test_list_contains_only_issues.yaml │ │ │ │ └── Issues.test_setters.yaml │ │ │ ├── test_pull_requests │ │ │ │ ├── PullRequests.test_all_pr_commits.yaml │ │ │ │ ├── PullRequests.test_commits_url.yaml │ │ │ │ ├── PullRequests.test_get_comment.yaml │ │ │ │ ├── PullRequests.test_head_commit.yaml │ │ │ │ ├── PullRequests.test_merge_commit_sha.yaml │ │ │ │ ├── PullRequests.test_pr_close.yaml │ │ │ │ ├── PullRequests.test_pr_create_fork_fork.yaml │ │ │ │ ├── PullRequests.test_pr_create_fork_other_fork.yaml │ │ │ │ ├── PullRequests.test_pr_create_upstream_fork.yaml │ │ │ │ ├── PullRequests.test_pr_create_upstream_forkusername.yaml │ │ │ │ ├── PullRequests.test_pr_create_upstream_upstream.yaml │ │ │ │ ├── PullRequests.test_pr_info.yaml │ │ │ │ ├── PullRequests.test_pr_labels.yaml │ │ │ │ ├── PullRequests.test_pr_list.yaml │ │ │ │ ├── PullRequests.test_pr_not_exists.yaml │ │ │ │ ├── PullRequests.test_pr_patch.yaml │ │ │ │ ├── PullRequests.test_pr_status.yaml │ │ │ │ ├── PullRequests.test_setters.yaml │ │ │ │ ├── PullRequests.test_source_project_fork_fork.yaml │ │ │ │ ├── PullRequests.test_source_project_other_fork_fork.yaml │ │ │ │ ├── PullRequests.test_source_project_renamed_fork.yaml │ │ │ │ ├── PullRequests.test_source_project_renamed_upstream.yaml │ │ │ │ ├── PullRequests.test_source_project_upstream_branch.yaml │ │ │ │ ├── PullRequests.test_source_project_upstream_fork.yaml │ │ │ │ ├── PullRequests.test_target_branch_head_commit.yaml │ │ │ │ └── PullRequests.test_update_pr_info.yaml │ │ │ ├── test_readonly │ │ │ │ ├── ReadOnly.test_create_fork.yaml │ │ │ │ ├── ReadOnly.test_create_pr.yaml │ │ │ │ └── ReadOnly.test_pr_comments.yaml │ │ │ ├── test_releases │ │ │ │ ├── Releases.test_create_release.yaml │ │ │ │ ├── Releases.test_edit_release.yaml │ │ │ │ ├── Releases.test_get_release.yaml │ │ │ │ ├── Releases.test_get_releases.yaml │ │ │ │ ├── Releases.test_latest_release.yaml │ │ │ │ └── Releases.test_latest_release_doesnt_exist.yaml │ │ │ └── test_service │ │ │ │ ├── Service.test_list_projects_with_user_input.yaml │ │ │ │ ├── Service.test_list_projects_with_user_language_input.yaml │ │ │ │ ├── Service.test_project_create.yaml │ │ │ │ ├── Service.test_project_create_duplicate.yaml │ │ │ │ ├── Service.test_project_create_in_the_group.yaml │ │ │ │ ├── Service.test_project_create_with_description.yaml │ │ │ │ ├── Service.test_wrong_auth.yaml │ │ │ │ └── Service.test_wrong_auth_static_method.yaml │ │ ├── test_forks.py │ │ ├── test_generic_commands.py │ │ ├── test_issues.py │ │ ├── test_pull_requests.py │ │ ├── test_readonly.py │ │ ├── test_releases.py │ │ ├── test_retries.py │ │ └── test_service.py │ ├── gitlab │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_comments.py │ │ ├── test_data │ │ │ ├── test_comments │ │ │ │ ├── Comments.test_duplicit_reactions.yaml │ │ │ │ ├── Comments.test_get_reactions.yaml │ │ │ │ ├── Comments.test_issue_react_to_comment_and_delete.yaml │ │ │ │ └── Comments.test_pr_react_to_comment_and_delete.yaml │ │ │ ├── test_forks │ │ │ │ ├── Forks.test_create_fork.yaml │ │ │ │ ├── Forks.test_create_fork_with_namespace.yaml │ │ │ │ ├── Forks.test_get_fork.yaml │ │ │ │ └── Forks.test_is_fork.yaml │ │ │ ├── test_generic_commands │ │ │ │ ├── GenericCommands.test_add_user.yaml │ │ │ │ ├── GenericCommands.test_branches.yaml │ │ │ │ ├── GenericCommands.test_branches_pagination.yaml │ │ │ │ ├── GenericCommands.test_commit_comment.yaml │ │ │ │ ├── GenericCommands.test_commits.yaml │ │ │ │ ├── GenericCommands.test_delete.yaml │ │ │ │ ├── GenericCommands.test_description_property.yaml │ │ │ │ ├── GenericCommands.test_description_setter.yaml │ │ │ │ ├── GenericCommands.test_email.yaml │ │ │ │ ├── GenericCommands.test_full_repo_name.yaml │ │ │ │ ├── GenericCommands.test_get_commit_comment.yaml │ │ │ │ ├── GenericCommands.test_get_commit_comments.yaml │ │ │ │ ├── GenericCommands.test_get_commit_statuses.yaml │ │ │ │ ├── GenericCommands.test_get_contributors.yaml │ │ │ │ ├── GenericCommands.test_get_description.yaml │ │ │ │ ├── GenericCommands.test_get_file.yaml │ │ │ │ ├── GenericCommands.test_get_file_content.yaml │ │ │ │ ├── GenericCommands.test_get_file_content_resolve_dot.yaml │ │ │ │ ├── GenericCommands.test_get_files.yaml │ │ │ │ ├── GenericCommands.test_get_git_urls.yaml │ │ │ │ ├── GenericCommands.test_get_owners.yaml │ │ │ │ ├── GenericCommands.test_get_sha_from_branch.yaml │ │ │ │ ├── GenericCommands.test_get_sha_from_branch_non_existing.yaml │ │ │ │ ├── GenericCommands.test_get_sha_from_tag.yaml │ │ │ │ ├── GenericCommands.test_get_web_url.yaml │ │ │ │ ├── GenericCommands.test_has_issues.yaml │ │ │ │ ├── GenericCommands.test_is_not_private.yaml │ │ │ │ ├── GenericCommands.test_is_private.yaml │ │ │ │ ├── GenericCommands.test_issue_permissions.yaml │ │ │ │ ├── GenericCommands.test_nonexisting_file.yaml │ │ │ │ ├── GenericCommands.test_parent_project.yaml │ │ │ │ ├── GenericCommands.test_pr_permissions.yaml │ │ │ │ ├── GenericCommands.test_project_exists.yaml │ │ │ │ ├── GenericCommands.test_project_not_exists.yaml │ │ │ │ ├── GenericCommands.test_request_access.yaml │ │ │ │ ├── GenericCommands.test_set_commit_status.yaml │ │ │ │ ├── GenericCommands.test_username.yaml │ │ │ │ └── GenericCommands.test_write_access_to_repo.yaml │ │ │ ├── test_issues │ │ │ │ ├── Issues.test_close_issue.yaml │ │ │ │ ├── Issues.test_create_issue.yaml │ │ │ │ ├── Issues.test_create_issue_with_assignee.yaml │ │ │ │ ├── Issues.test_create_private_issue.yaml │ │ │ │ ├── Issues.test_create_with_disabled_issues.yaml │ │ │ │ ├── Issues.test_get_comment.yaml │ │ │ │ ├── Issues.test_get_issue_comments.yaml │ │ │ │ ├── Issues.test_get_issue_comments_author.yaml │ │ │ │ ├── Issues.test_get_issue_comments_author_regex.yaml │ │ │ │ ├── Issues.test_get_issue_comments_regex.yaml │ │ │ │ ├── Issues.test_get_issue_comments_regex_reversed.yaml │ │ │ │ ├── Issues.test_get_issue_comments_reversed.yaml │ │ │ │ ├── Issues.test_get_issue_list.yaml │ │ │ │ ├── Issues.test_get_issue_list_assignee.yaml │ │ │ │ ├── Issues.test_get_issue_list_author.yaml │ │ │ │ ├── Issues.test_get_issue_list_nonexisting_author.yaml │ │ │ │ ├── Issues.test_issue_assignees.yaml │ │ │ │ ├── Issues.test_issue_comments_updates.yaml │ │ │ │ ├── Issues.test_issue_info.yaml │ │ │ │ ├── Issues.test_issue_labels.yaml │ │ │ │ ├── Issues.test_issue_list_labels.yaml │ │ │ │ ├── Issues.test_issue_updates.yaml │ │ │ │ └── Issues.test_setters.yaml │ │ │ ├── test_pull_requests │ │ │ │ ├── PullRequests.test_commits_url.yaml │ │ │ │ ├── PullRequests.test_create_pr_fork_other_fork.yaml │ │ │ │ ├── PullRequests.test_create_pr_upstream_fork.yaml │ │ │ │ ├── PullRequests.test_create_pr_upstream_forkusername.yaml │ │ │ │ ├── PullRequests.test_create_pr_upstream_upstream.yaml │ │ │ │ ├── PullRequests.test_get_all_pr_comments.yaml │ │ │ │ ├── PullRequests.test_get_all_pr_commits.yaml │ │ │ │ ├── PullRequests.test_get_comment.yaml │ │ │ │ ├── PullRequests.test_get_pr_comments_author.yaml │ │ │ │ ├── PullRequests.test_get_pr_comments_author_regex.yaml │ │ │ │ ├── PullRequests.test_head_commit.yaml │ │ │ │ ├── PullRequests.test_merge_commit_sha.yaml │ │ │ │ ├── PullRequests.test_mr_list_limit.yaml │ │ │ │ ├── PullRequests.test_pr_close.yaml │ │ │ │ ├── PullRequests.test_pr_comments_updates.yaml │ │ │ │ ├── PullRequests.test_pr_create_fork_fork.yaml │ │ │ │ ├── PullRequests.test_pr_info.yaml │ │ │ │ ├── PullRequests.test_pr_labels.yaml │ │ │ │ ├── PullRequests.test_pr_list.yaml │ │ │ │ ├── PullRequests.test_pr_merge.yaml │ │ │ │ ├── PullRequests.test_pr_not_exists.yaml │ │ │ │ ├── PullRequests.test_pr_patch.yaml │ │ │ │ ├── PullRequests.test_pr_status.yaml │ │ │ │ ├── PullRequests.test_setters.yaml │ │ │ │ ├── PullRequests.test_source_project_fork_fork.yaml │ │ │ │ ├── PullRequests.test_source_project_other_fork_fork.yaml │ │ │ │ ├── PullRequests.test_source_project_renamed_fork.yaml │ │ │ │ ├── PullRequests.test_source_project_renamed_upstream.yaml │ │ │ │ ├── PullRequests.test_source_project_upstream_branch.yaml │ │ │ │ ├── PullRequests.test_source_project_upstream_fork.yaml │ │ │ │ ├── PullRequests.test_target_branch_head_commit.yaml │ │ │ │ ├── PullRequests.test_test_merge_commit_sha.yaml │ │ │ │ └── PullRequests.test_update_pr_info.yaml │ │ │ ├── test_releases │ │ │ │ ├── Releases.test_create_release.yaml │ │ │ │ ├── Releases.test_get_latest_release.yaml │ │ │ │ ├── Releases.test_get_latest_release_doesnt_exist.yaml │ │ │ │ ├── Releases.test_get_releases.yaml │ │ │ │ └── Releases.test_get_releases_pagination.yaml │ │ │ ├── test_service │ │ │ │ ├── Service.test_list_projects_get_forks.yaml │ │ │ │ ├── Service.test_list_projects_with_namespace_input.yaml │ │ │ │ ├── Service.test_list_projects_with_namespace_input_and_language_input.yaml │ │ │ │ ├── Service.test_project_create.yaml │ │ │ │ ├── Service.test_project_create_duplicate.yaml │ │ │ │ ├── Service.test_project_create_in_the_group.yaml │ │ │ │ ├── Service.test_project_create_with_description.yaml │ │ │ │ ├── Service.test_service_without_auth.yaml │ │ │ │ ├── Service.test_wrong_auth.yaml │ │ │ │ └── Service.test_wrong_auth_static_method.yaml │ │ │ └── test_tags │ │ │ │ ├── Tags.test_get_tags.yaml │ │ │ │ └── Tags.test_tag_from_tag_name.yaml │ │ ├── test_forks.py │ │ ├── test_generic_commands.py │ │ ├── test_issues.py │ │ ├── test_pull_requests.py │ │ ├── test_releases.py │ │ ├── test_service.py │ │ └── test_tags.py │ └── pagure │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_comments.py │ │ ├── test_data │ │ ├── test_comments │ │ │ ├── Comments.test_pr_comments.yaml │ │ │ ├── Comments.test_pr_comments_filter.yaml │ │ │ ├── Comments.test_pr_comments_reversed.yaml │ │ │ └── Comments.test_pr_comments_search.yaml │ │ ├── test_forks │ │ │ ├── Forks.test_create_fork.yaml │ │ │ ├── Forks.test_create_fork_with_namespace.yaml │ │ │ ├── Forks.test_fork.yaml │ │ │ ├── Forks.test_fork_in_str.yaml │ │ │ ├── Forks.test_fork_property.yaml │ │ │ └── Forks.test_nonexisting_fork.yaml │ │ ├── test_generic_commands │ │ │ ├── GenericCommands.test_add_and_remove_group.yaml │ │ │ ├── GenericCommands.test_add_and_remove_user.yaml │ │ │ ├── GenericCommands.test_branches.yaml │ │ │ ├── GenericCommands.test_commit_statuses.yaml │ │ │ ├── GenericCommands.test_delete.yaml │ │ │ ├── GenericCommands.test_description.yaml │ │ │ ├── GenericCommands.test_description_property.yaml │ │ │ ├── GenericCommands.test_full_repo_name.yaml │ │ │ ├── GenericCommands.test_get_file.yaml │ │ │ ├── GenericCommands.test_get_files.yaml │ │ │ ├── GenericCommands.test_get_owners.yaml │ │ │ ├── GenericCommands.test_get_releases.yaml │ │ │ ├── GenericCommands.test_get_sha_from_branch.yaml │ │ │ ├── GenericCommands.test_get_sha_from_branch_non_existing.yaml │ │ │ ├── GenericCommands.test_get_users_with_given_access.yaml │ │ │ ├── GenericCommands.test_get_web_url.yaml │ │ │ ├── GenericCommands.test_git_urls.yaml │ │ │ ├── GenericCommands.test_has_issues.yaml │ │ │ ├── GenericCommands.test_no_file_server_error.yaml │ │ │ ├── GenericCommands.test_nonexisting_file.yaml │ │ │ ├── GenericCommands.test_parent_project.yaml │ │ │ ├── GenericCommands.test_pr_permissions.yaml │ │ │ ├── GenericCommands.test_username.yaml │ │ │ └── GenericCommands.test_write_access_to_repo.yaml │ │ ├── test_issues │ │ │ ├── Issues.test_create_issue.yaml │ │ │ ├── Issues.test_create_issue_with_assignees.yaml │ │ │ ├── Issues.test_create_with_disabled_issues.yaml │ │ │ ├── Issues.test_get_comment.yaml │ │ │ ├── Issues.test_issue_assignees.yaml │ │ │ ├── Issues.test_issue_list.yaml │ │ │ ├── Issues.test_issue_list_assignee.yaml │ │ │ ├── Issues.test_issue_list_author.yaml │ │ │ ├── Issues.test_issue_list_labels.yaml │ │ │ ├── Issues.test_issue_list_nonexisting_author.yaml │ │ │ ├── Issues.test_issue_list_paginated.yaml │ │ │ └── Issues.test_issue_without_label.yaml │ │ ├── test_project_token │ │ │ ├── PagureProjectTokenCommands.test_create_release.yaml │ │ │ ├── PagureProjectTokenCommands.test_is_private.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_comments.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_comments_author.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_comments_author_regex.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_comments_regex.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_comments_regex_reversed.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_comments_reversed.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_info.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_permissions.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_update_description.yaml │ │ │ ├── PagureProjectTokenCommands.test_issue_update_title.yaml │ │ │ ├── PagureProjectTokenCommands.test_pr_comments_author.yaml │ │ │ ├── PagureProjectTokenCommands.test_pr_comments_author_regex.yaml │ │ │ ├── PagureProjectTokenCommands.test_pr_setters.yaml │ │ │ ├── PagureProjectTokenCommands.test_pr_status.yaml │ │ │ ├── PagureProjectTokenCommands.test_token_is_none_then_set.yaml │ │ │ └── PagureProjectTokenCommands.test_update_pr_info.yaml │ │ ├── test_pull_requests │ │ │ ├── PullRequests.test_commits_url.yaml │ │ │ ├── PullRequests.test_get_comment.yaml │ │ │ ├── PullRequests.test_head_commit.yaml │ │ │ ├── PullRequests.test_pr_create_from_fork.yaml │ │ │ ├── PullRequests.test_pr_create_from_parent.yaml │ │ │ ├── PullRequests.test_pr_diff.yaml │ │ │ ├── PullRequests.test_pr_diff_failing.yaml │ │ │ ├── PullRequests.test_pr_diff_failing_and_succeding.yaml │ │ │ ├── PullRequests.test_pr_info.yaml │ │ │ ├── PullRequests.test_pr_list.yaml │ │ │ ├── PullRequests.test_pr_patch.yaml │ │ │ ├── PullRequests.test_set_pr_flag.yaml │ │ │ ├── PullRequests.test_source_project_upstream_branch.yaml │ │ │ ├── PullRequests.test_source_project_upstream_fork.yaml │ │ │ └── PullRequests.test_target_branch_head_commit.yaml │ │ └── test_service │ │ │ ├── Service.test_get_group.yaml │ │ │ ├── Service.test_project_create.yaml │ │ │ ├── Service.test_project_create_in_the_group.yaml │ │ │ ├── Service.test_project_create_invalid_namespace.yaml │ │ │ ├── Service.test_project_create_unauthorized_namespace.yaml │ │ │ └── Service.test_project_create_with_description.yaml │ │ ├── test_forks.py │ │ ├── test_generic_commands.py │ │ ├── test_issues.py │ │ ├── test_project_token.py │ │ ├── test_pull_requests.py │ │ └── test_service.py ├── smoke.fmf ├── smoke.sh └── unit │ ├── __init__.py │ ├── test_factory.py │ ├── test_github.py │ ├── test_gitlab.py │ ├── test_pagure.py │ ├── test_parsing.py │ └── test_utils.py └── tox.ini /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.env.template -------------------------------------------------------------------------------- /.fmf/version: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /.git_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.git_archival.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitchangelog.rc: -------------------------------------------------------------------------------- 1 | 2 | output_engine = mustache("markdown.tpl") 3 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/check-release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.github/workflows/check-release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/do-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.github/workflows/do-release.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/opened-issues-to-the-board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.github/workflows/opened-issues-to-the-board.yml -------------------------------------------------------------------------------- /.github/workflows/opened-prs-to-the-board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.github/workflows/opened-prs-to-the-board.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.github/workflows/prepare-release.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.gitignore -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.packit.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | tests/integration/*/test_data/* 2 | -------------------------------------------------------------------------------- /.zuul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/.zuul.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COMPATIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/COMPATIBILITY.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Containerfile.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/Containerfile.tests -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/DCO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_HEADER.txt: -------------------------------------------------------------------------------- 1 | Copyright Contributors to the Packit project. 2 | SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/img/closed_issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/img/closed_issue.png -------------------------------------------------------------------------------- /examples/img/new_issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/img/new_issue.png -------------------------------------------------------------------------------- /examples/img/newly_created_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/img/newly_created_project.png -------------------------------------------------------------------------------- /examples/list_pr_patches.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/list_pr_patches.ipynb -------------------------------------------------------------------------------- /examples/list_prs_since_release.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/list_prs_since_release.ipynb -------------------------------------------------------------------------------- /examples/releases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/releases.ipynb -------------------------------------------------------------------------------- /examples/syncing_labels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/syncing_labels.ipynb -------------------------------------------------------------------------------- /examples/user_owned_repositories.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/user_owned_repositories.ipynb -------------------------------------------------------------------------------- /examples/working_with_issues.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/examples/working_with_issues.ipynb -------------------------------------------------------------------------------- /fedora/python-ogr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/fedora/python-ogr.spec -------------------------------------------------------------------------------- /files/local-tests-requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/local-tests-requirements.yaml -------------------------------------------------------------------------------- /files/packit-testing-farm-prepare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/packit-testing-farm-prepare.yaml -------------------------------------------------------------------------------- /files/tasks/build-rpm-deps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/build-rpm-deps.yaml -------------------------------------------------------------------------------- /files/tasks/configure-git.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/configure-git.yaml -------------------------------------------------------------------------------- /files/tasks/generic-dnf-requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/generic-dnf-requirements.yaml -------------------------------------------------------------------------------- /files/tasks/install-ogr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/install-ogr.yaml -------------------------------------------------------------------------------- /files/tasks/install-requre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/install-requre.yaml -------------------------------------------------------------------------------- /files/tasks/packit-requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/packit-requirements.yaml -------------------------------------------------------------------------------- /files/tasks/packit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/packit-tests.yaml -------------------------------------------------------------------------------- /files/tasks/project-dir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/project-dir.yaml -------------------------------------------------------------------------------- /files/tasks/python-compile-deps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/python-compile-deps.yaml -------------------------------------------------------------------------------- /files/tasks/rpm-test-deps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/tasks/rpm-test-deps.yaml -------------------------------------------------------------------------------- /files/zuul-install-requirements-pip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/zuul-install-requirements-pip.yaml -------------------------------------------------------------------------------- /files/zuul-install-requirements-rpms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/zuul-install-requirements-rpms.yaml -------------------------------------------------------------------------------- /files/zuul-reverse-dep-packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/zuul-reverse-dep-packit.yaml -------------------------------------------------------------------------------- /files/zuul-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/files/zuul-tests.yaml -------------------------------------------------------------------------------- /markdown.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/markdown.tpl -------------------------------------------------------------------------------- /ogr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/__init__.py -------------------------------------------------------------------------------- /ogr/abstract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/__init__.py -------------------------------------------------------------------------------- /ogr/abstract/abstract_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/abstract_class.py -------------------------------------------------------------------------------- /ogr/abstract/access_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/access_level.py -------------------------------------------------------------------------------- /ogr/abstract/auth_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/auth_method.py -------------------------------------------------------------------------------- /ogr/abstract/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/comment.py -------------------------------------------------------------------------------- /ogr/abstract/commit_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/commit_flag.py -------------------------------------------------------------------------------- /ogr/abstract/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/exception.py -------------------------------------------------------------------------------- /ogr/abstract/git_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/git_project.py -------------------------------------------------------------------------------- /ogr/abstract/git_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/git_service.py -------------------------------------------------------------------------------- /ogr/abstract/git_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/git_tag.py -------------------------------------------------------------------------------- /ogr/abstract/git_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/git_user.py -------------------------------------------------------------------------------- /ogr/abstract/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/issue.py -------------------------------------------------------------------------------- /ogr/abstract/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/label.py -------------------------------------------------------------------------------- /ogr/abstract/pull_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/pull_request.py -------------------------------------------------------------------------------- /ogr/abstract/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/release.py -------------------------------------------------------------------------------- /ogr/abstract/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/abstract/status.py -------------------------------------------------------------------------------- /ogr/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/constant.py -------------------------------------------------------------------------------- /ogr/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/deprecation.py -------------------------------------------------------------------------------- /ogr/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/exceptions.py -------------------------------------------------------------------------------- /ogr/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/factory.py -------------------------------------------------------------------------------- /ogr/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/parsing.py -------------------------------------------------------------------------------- /ogr/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogr/read_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/read_only.py -------------------------------------------------------------------------------- /ogr/services/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Contributors to the Packit project. 2 | # SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /ogr/services/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/base.py -------------------------------------------------------------------------------- /ogr/services/forgejo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/__init__.py -------------------------------------------------------------------------------- /ogr/services/forgejo/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/flag.py -------------------------------------------------------------------------------- /ogr/services/forgejo/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/issue.py -------------------------------------------------------------------------------- /ogr/services/forgejo/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/label.py -------------------------------------------------------------------------------- /ogr/services/forgejo/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/project.py -------------------------------------------------------------------------------- /ogr/services/forgejo/pull_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/pull_request.py -------------------------------------------------------------------------------- /ogr/services/forgejo/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/release.py -------------------------------------------------------------------------------- /ogr/services/forgejo/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/service.py -------------------------------------------------------------------------------- /ogr/services/forgejo/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/user.py -------------------------------------------------------------------------------- /ogr/services/forgejo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/forgejo/utils.py -------------------------------------------------------------------------------- /ogr/services/github/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/__init__.py -------------------------------------------------------------------------------- /ogr/services/github/auth_providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/auth_providers/__init__.py -------------------------------------------------------------------------------- /ogr/services/github/auth_providers/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/auth_providers/abstract.py -------------------------------------------------------------------------------- /ogr/services/github/auth_providers/github_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/auth_providers/github_app.py -------------------------------------------------------------------------------- /ogr/services/github/auth_providers/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/auth_providers/token.py -------------------------------------------------------------------------------- /ogr/services/github/auth_providers/tokman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/auth_providers/tokman.py -------------------------------------------------------------------------------- /ogr/services/github/check_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/check_run.py -------------------------------------------------------------------------------- /ogr/services/github/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/comments.py -------------------------------------------------------------------------------- /ogr/services/github/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/flag.py -------------------------------------------------------------------------------- /ogr/services/github/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/issue.py -------------------------------------------------------------------------------- /ogr/services/github/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/label.py -------------------------------------------------------------------------------- /ogr/services/github/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/project.py -------------------------------------------------------------------------------- /ogr/services/github/pull_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/pull_request.py -------------------------------------------------------------------------------- /ogr/services/github/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/release.py -------------------------------------------------------------------------------- /ogr/services/github/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/service.py -------------------------------------------------------------------------------- /ogr/services/github/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/github/user.py -------------------------------------------------------------------------------- /ogr/services/gitlab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/__init__.py -------------------------------------------------------------------------------- /ogr/services/gitlab/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/comments.py -------------------------------------------------------------------------------- /ogr/services/gitlab/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/flag.py -------------------------------------------------------------------------------- /ogr/services/gitlab/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/issue.py -------------------------------------------------------------------------------- /ogr/services/gitlab/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/label.py -------------------------------------------------------------------------------- /ogr/services/gitlab/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/project.py -------------------------------------------------------------------------------- /ogr/services/gitlab/pull_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/pull_request.py -------------------------------------------------------------------------------- /ogr/services/gitlab/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/release.py -------------------------------------------------------------------------------- /ogr/services/gitlab/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/service.py -------------------------------------------------------------------------------- /ogr/services/gitlab/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/gitlab/user.py -------------------------------------------------------------------------------- /ogr/services/pagure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/__init__.py -------------------------------------------------------------------------------- /ogr/services/pagure/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/comments.py -------------------------------------------------------------------------------- /ogr/services/pagure/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/flag.py -------------------------------------------------------------------------------- /ogr/services/pagure/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/group.py -------------------------------------------------------------------------------- /ogr/services/pagure/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/issue.py -------------------------------------------------------------------------------- /ogr/services/pagure/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/label.py -------------------------------------------------------------------------------- /ogr/services/pagure/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/project.py -------------------------------------------------------------------------------- /ogr/services/pagure/pull_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/pull_request.py -------------------------------------------------------------------------------- /ogr/services/pagure/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/release.py -------------------------------------------------------------------------------- /ogr/services/pagure/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/service.py -------------------------------------------------------------------------------- /ogr/services/pagure/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/services/pagure/user.py -------------------------------------------------------------------------------- /ogr/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/ogr/utils.py -------------------------------------------------------------------------------- /plans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/plans/README.md -------------------------------------------------------------------------------- /plans/full.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/plans/full.fmf -------------------------------------------------------------------------------- /plans/main.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/plans/main.fmf -------------------------------------------------------------------------------- /plans/packit-integration.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/plans/packit-integration.fmf -------------------------------------------------------------------------------- /plans/rpmlint.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/plans/rpmlint.fmf -------------------------------------------------------------------------------- /plans/smoke.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/plans/smoke.fmf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release-conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/release-conf.yaml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Contributors to the Packit project. 2 | # SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /tests/full.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/full.fmf -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Contributors to the Packit project. 2 | # SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/factory/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Contributors to the Packit project. 2 | # SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /tests/integration/factory/test_data/test_factory/FactoryTests.test_get_project_forgejo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/factory/test_data/test_factory/FactoryTests.test_get_project_forgejo.yaml -------------------------------------------------------------------------------- /tests/integration/factory/test_data/test_factory/FactoryTests.test_get_project_github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/factory/test_data/test_factory/FactoryTests.test_get_project_github.yaml -------------------------------------------------------------------------------- /tests/integration/factory/test_data/test_factory/FactoryTests.test_get_project_gitlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/factory/test_data/test_factory/FactoryTests.test_get_project_gitlab.yaml -------------------------------------------------------------------------------- /tests/integration/factory/test_data/test_factory/FactoryTests.test_get_project_pagure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/factory/test_data/test_factory/FactoryTests.test_get_project_pagure.yaml -------------------------------------------------------------------------------- /tests/integration/factory/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/factory/test_factory.py -------------------------------------------------------------------------------- /tests/integration/forgejo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/README.md -------------------------------------------------------------------------------- /tests/integration/forgejo/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Contributors to the Packit project. 2 | # SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /tests/integration/forgejo/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/conftest.py -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_generic_commands/test_get_commit_statuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_generic_commands/test_get_commit_statuses.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_generic_commands/test_set_commit_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_generic_commands/test_set_commit_status.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_add_remove_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_add_remove_user.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_branches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_branches.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_commits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_commits.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_delete.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_description_property.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_description_property.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_description_setter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_description_setter.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_full_repo_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_full_repo_name.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_contributors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_contributors.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_description.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_file.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_file_content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_file_content.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_file_content_resolve_dot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_file_content_resolve_dot.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_files.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_git_urls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_git_urls.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_owners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_owners.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_sha_from_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_sha_from_branch.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_sha_from_branch_non_existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_sha_from_branch_non_existing.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_sha_from_tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_sha_from_tag.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_users_with_given_access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_users_with_given_access.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_get_web_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_get_web_url.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_has_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_has_issues.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_is_not_private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_is_not_private.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_is_private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_is_private.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_issue_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_issue_permissions.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_nonexisting_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_nonexisting_file.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_parent_project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_parent_project.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_pr_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_pr_permissions.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_project_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_project_exists.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_project/test_project_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_project/test_project_not_exists.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_commits_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_commits_url.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_get_all_pr_commits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_get_all_pr_commits.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_head_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_head_commit.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_merge_commit_sha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_merge_commit_sha.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_pr_create_fork_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_pr_create_fork_fork.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_pr_create_upstream_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_pr_create_upstream_fork.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_pr_create_upstream_forkusername.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_pr_create_upstream_forkusername.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_pr_create_upstream_upstream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_pr_create_upstream_upstream.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_pr_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_pr_info.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_pr_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_pr_labels.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_pr_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_pr_list.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_pr_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_pr_not_exists.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_pr_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_pr_patch.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_setters.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_source_project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_source_project.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_source_project_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_source_project_fork.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_pull_request/test_target_branch_head_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_pull_request/test_target_branch_head_commit.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_release/test_create_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_release/test_create_release.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_release/test_edit_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_release/test_edit_release.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_release/test_get_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_release/test_get_release.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_release/test_get_releases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_release/test_get_releases.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_release/test_latest_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_release/test_latest_release.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_release/test_latest_release_doesnt_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_release/test_latest_release_doesnt_exist.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_service/test_project_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_service/test_project_create.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_user/test_email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_user/test_email.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_user/test_get_email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_user/test_get_email.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_user/test_get_forks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_user/test_get_forks.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_user/test_get_projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_user/test_get_projects.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_data/test_user/test_username.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_data/test_user/test_username.yaml -------------------------------------------------------------------------------- /tests/integration/forgejo/test_generic_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_generic_commands.py -------------------------------------------------------------------------------- /tests/integration/forgejo/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_project.py -------------------------------------------------------------------------------- /tests/integration/forgejo/test_pull_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_pull_request.py -------------------------------------------------------------------------------- /tests/integration/forgejo/test_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_release.py -------------------------------------------------------------------------------- /tests/integration/forgejo/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_service.py -------------------------------------------------------------------------------- /tests/integration/forgejo/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/forgejo/test_user.py -------------------------------------------------------------------------------- /tests/integration/github/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Contributors to the Packit project. 2 | # SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /tests/integration/github/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/base.py -------------------------------------------------------------------------------- /tests/integration/github/base_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/base_app.py -------------------------------------------------------------------------------- /tests/integration/github/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_app.py -------------------------------------------------------------------------------- /tests/integration/github/test_check_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_check_run.py -------------------------------------------------------------------------------- /tests/integration/github/test_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_comments.py -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_app/App.test_get_project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_app/App.test_get_project.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_app/App.test_get_project_having_key_as_path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_app/App.test_get_project_having_key_as_path.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_app/App.test_github_proj_no_app_creds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_app/App.test_github_proj_no_app_creds.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_app/App.test_private_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_app/App.test_private_key.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_app/App.test_private_key_path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_app/App.test_private_key_path.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_change_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_change_name.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_change_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_change_url.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_create_completed_without_conclusion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_create_completed_without_conclusion.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_create_neutral_completed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_create_neutral_completed.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_create_timed_out.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_create_timed_out.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_create_to_queue_and_succeed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_create_to_queue_and_succeed.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_create_with_completed_at_without_conclusion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_create_with_completed_at_without_conclusion.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_create_with_completed_without_conclusion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_create_with_completed_without_conclusion.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_get_latest_check_run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_get_latest_check_run.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_get_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_get_list.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_get_list_no_runs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_get_list_no_runs.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_non_existing_check_runs_returns_none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_non_existing_check_runs_returns_none.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_setting_completed_at_without_conclusion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_setting_completed_at_without_conclusion.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_check_run/CheckRun.test_setting_completed_without_conclusion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_check_run/CheckRun.test_setting_completed_without_conclusion.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_get_reactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_get_reactions.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_issue_comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_issue_comments.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_issue_comments_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_issue_comments_author.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_issue_comments_author_regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_issue_comments_author_regex.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_issue_comments_regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_issue_comments_regex.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_issue_comments_regex_reversed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_issue_comments_regex_reversed.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_issue_comments_reversed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_issue_comments_reversed.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_issue_comments_updates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_issue_comments_updates.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_issue_react_to_comment_and_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_issue_react_to_comment_and_delete.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_pr_comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_pr_comments.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author_regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author_regex.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_pr_comments_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_filter.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_pr_comments_reversed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_reversed.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_pr_comments_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_search.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_pr_comments_updates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_updates.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_comments/Comments.test_pr_react_to_comment_and_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_comments/Comments.test_pr_react_to_comment_and_delete.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_forks/Forks.test_create_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_forks/Forks.test_create_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_forks/Forks.test_create_fork_with_namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_forks/Forks.test_create_fork_with_namespace.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_forks/Forks.test_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_forks/Forks.test_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_forks/Forks.test_get_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_forks/Forks.test_get_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_forks/Forks.test_is_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_forks/Forks.test_is_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_forks/Forks.test_nonexisting_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_forks/Forks.test_nonexisting_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_add_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_add_user.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_branches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_branches.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_commit_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_commit_comment.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_commit_flags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_commit_flags.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_commits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_commits.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_delete.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_description.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_description_property.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_description_property.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_description_setter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_description_setter.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_email.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_full_repo_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_full_repo_name.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_commit_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_commit_comment.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_commit_comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_commit_comments.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_commit_statuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_commit_statuses.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_contributors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_contributors.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_file.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_files.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_owners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_owners.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch_non_existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch_non_existing.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_sha_from_tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_sha_from_tag.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_tag_from_nonexisting_tag_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_tag_from_nonexisting_tag_name.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_tag_from_tag_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_tag_from_tag_name.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_tags.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_web_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_web_url.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_git_urls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_git_urls.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_has_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_has_issues.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_is_not_private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_is_not_private.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_is_private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_is_private.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_issue_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_issue_permissions.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_issue_permissions_cant_close.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_issue_permissions_cant_close.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_nonexisting_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_nonexisting_file.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_parent_project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_parent_project.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_pr_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_pr_permissions.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_project_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_project_exists.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_project_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_project_not_exists.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_redirection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_redirection.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status_long_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status_long_description.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_username.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_username.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_create_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_create_issue.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_create_issue_with_assignee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_create_issue_with_assignee.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_create_private_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_create_private_issue.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_create_with_disabled_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_create_with_disabled_issues.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_functions_fail_for_pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_functions_fail_for_pr.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_get_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_get_comment.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_assignees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_assignees.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_info.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_labels.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_list.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_list_assignee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_list_assignee.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_list_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_list_author.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_list_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_list_labels.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_list_nonexisting_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_list_nonexisting_author.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_no_such_assignee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_no_such_assignee.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_not_exists.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_updates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_updates.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_issue_without_label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_issue_without_label.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_list_contains_only_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_list_contains_only_issues.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_issues/Issues.test_setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_issues/Issues.test_setters.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_all_pr_commits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_all_pr_commits.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_commits_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_commits_url.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_get_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_get_comment.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_head_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_head_commit.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_merge_commit_sha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_merge_commit_sha.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_close.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_close.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_fork_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_fork_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_fork_other_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_fork_other_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_upstream_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_upstream_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_upstream_forkusername.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_upstream_forkusername.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_upstream_upstream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_create_upstream_upstream.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_info.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_labels.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_list.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_not_exists.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_patch.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_pr_status.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_setters.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_fork_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_fork_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_other_fork_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_other_fork_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_renamed_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_renamed_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_renamed_upstream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_renamed_upstream.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_upstream_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_upstream_branch.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_upstream_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_source_project_upstream_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_target_branch_head_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_target_branch_head_commit.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_pull_requests/PullRequests.test_update_pr_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_pull_requests/PullRequests.test_update_pr_info.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_readonly/ReadOnly.test_create_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_readonly/ReadOnly.test_create_fork.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_readonly/ReadOnly.test_create_pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_readonly/ReadOnly.test_create_pr.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_readonly/ReadOnly.test_pr_comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_readonly/ReadOnly.test_pr_comments.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_releases/Releases.test_create_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_releases/Releases.test_create_release.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_releases/Releases.test_edit_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_releases/Releases.test_edit_release.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_releases/Releases.test_get_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_releases/Releases.test_get_release.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_releases/Releases.test_get_releases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_releases/Releases.test_get_releases.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_releases/Releases.test_latest_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_releases/Releases.test_latest_release.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_releases/Releases.test_latest_release_doesnt_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_releases/Releases.test_latest_release_doesnt_exist.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_service/Service.test_list_projects_with_user_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_service/Service.test_list_projects_with_user_input.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_service/Service.test_list_projects_with_user_language_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_service/Service.test_list_projects_with_user_language_input.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_service/Service.test_project_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_service/Service.test_project_create.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_service/Service.test_project_create_duplicate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_service/Service.test_project_create_duplicate.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_service/Service.test_project_create_in_the_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_service/Service.test_project_create_in_the_group.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_service/Service.test_project_create_with_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_service/Service.test_project_create_with_description.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_service/Service.test_wrong_auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_service/Service.test_wrong_auth.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_data/test_service/Service.test_wrong_auth_static_method.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_data/test_service/Service.test_wrong_auth_static_method.yaml -------------------------------------------------------------------------------- /tests/integration/github/test_forks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_forks.py -------------------------------------------------------------------------------- /tests/integration/github/test_generic_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_generic_commands.py -------------------------------------------------------------------------------- /tests/integration/github/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_issues.py -------------------------------------------------------------------------------- /tests/integration/github/test_pull_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_pull_requests.py -------------------------------------------------------------------------------- /tests/integration/github/test_readonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_readonly.py -------------------------------------------------------------------------------- /tests/integration/github/test_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_releases.py -------------------------------------------------------------------------------- /tests/integration/github/test_retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_retries.py -------------------------------------------------------------------------------- /tests/integration/github/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/github/test_service.py -------------------------------------------------------------------------------- /tests/integration/gitlab/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Contributors to the Packit project. 2 | # SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /tests/integration/gitlab/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/base.py -------------------------------------------------------------------------------- /tests/integration/gitlab/test_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_comments.py -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_comments/Comments.test_duplicit_reactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_comments/Comments.test_duplicit_reactions.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_comments/Comments.test_get_reactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_comments/Comments.test_get_reactions.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_comments/Comments.test_issue_react_to_comment_and_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_comments/Comments.test_issue_react_to_comment_and_delete.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_comments/Comments.test_pr_react_to_comment_and_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_comments/Comments.test_pr_react_to_comment_and_delete.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_forks/Forks.test_create_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_forks/Forks.test_create_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_forks/Forks.test_create_fork_with_namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_forks/Forks.test_create_fork_with_namespace.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_forks/Forks.test_get_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_forks/Forks.test_get_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_forks/Forks.test_is_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_forks/Forks.test_is_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_add_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_add_user.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_branches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_branches.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_branches_pagination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_branches_pagination.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_commit_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_commit_comment.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_commits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_commits.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_delete.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_description_property.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_description_property.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_description_setter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_description_setter.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_email.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_full_repo_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_full_repo_name.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_commit_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_commit_comment.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_commit_comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_commit_comments.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_commit_statuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_commit_statuses.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_contributors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_contributors.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_description.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_file.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_file_content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_file_content.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_file_content_resolve_dot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_file_content_resolve_dot.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_files.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_git_urls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_git_urls.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_owners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_owners.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch_non_existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch_non_existing.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_sha_from_tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_sha_from_tag.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_web_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_get_web_url.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_has_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_has_issues.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_is_not_private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_is_not_private.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_is_private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_is_private.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_issue_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_issue_permissions.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_nonexisting_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_nonexisting_file.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_parent_project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_parent_project.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_pr_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_pr_permissions.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_project_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_project_exists.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_project_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_project_not_exists.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_request_access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_request_access.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_set_commit_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_set_commit_status.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_username.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_username.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_close_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_close_issue.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_create_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_create_issue.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_create_issue_with_assignee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_create_issue_with_assignee.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_create_private_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_create_private_issue.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_create_with_disabled_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_create_with_disabled_issues.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_comment.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_author.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_author_regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_author_regex.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_regex.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_regex_reversed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_regex_reversed.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_reversed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_comments_reversed.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_list.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_list_assignee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_list_assignee.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_list_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_list_author.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_list_nonexisting_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_get_issue_list_nonexisting_author.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_issue_assignees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_issue_assignees.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_issue_comments_updates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_issue_comments_updates.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_issue_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_issue_info.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_issue_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_issue_labels.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_issue_list_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_issue_list_labels.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_issue_updates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_issue_updates.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_issues/Issues.test_setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_issues/Issues.test_setters.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_commits_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_commits_url.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_create_pr_fork_other_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_create_pr_fork_other_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_create_pr_upstream_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_create_pr_upstream_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_create_pr_upstream_forkusername.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_create_pr_upstream_forkusername.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_create_pr_upstream_upstream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_create_pr_upstream_upstream.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_all_pr_comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_all_pr_comments.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_all_pr_commits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_all_pr_commits.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_comment.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_pr_comments_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_pr_comments_author.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_pr_comments_author_regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_get_pr_comments_author_regex.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_head_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_head_commit.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_merge_commit_sha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_merge_commit_sha.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_mr_list_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_mr_list_limit.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_close.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_close.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_comments_updates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_comments_updates.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_create_fork_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_create_fork_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_info.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_labels.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_list.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_merge.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_not_exists.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_patch.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_pr_status.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_setters.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_fork_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_fork_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_other_fork_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_other_fork_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_renamed_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_renamed_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_renamed_upstream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_renamed_upstream.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_upstream_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_upstream_branch.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_upstream_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_source_project_upstream_fork.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_target_branch_head_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_target_branch_head_commit.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_test_merge_commit_sha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_test_merge_commit_sha.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_update_pr_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_pull_requests/PullRequests.test_update_pr_info.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_releases/Releases.test_create_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_releases/Releases.test_create_release.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_releases/Releases.test_get_latest_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_releases/Releases.test_get_latest_release.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_releases/Releases.test_get_latest_release_doesnt_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_releases/Releases.test_get_latest_release_doesnt_exist.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_releases/Releases.test_get_releases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_releases/Releases.test_get_releases.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_releases/Releases.test_get_releases_pagination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_releases/Releases.test_get_releases_pagination.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_list_projects_get_forks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_list_projects_get_forks.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_list_projects_with_namespace_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_list_projects_with_namespace_input.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_list_projects_with_namespace_input_and_language_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_list_projects_with_namespace_input_and_language_input.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_project_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_project_create.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_project_create_duplicate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_project_create_duplicate.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_project_create_in_the_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_project_create_in_the_group.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_project_create_with_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_project_create_with_description.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_service_without_auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_service_without_auth.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_wrong_auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_wrong_auth.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_service/Service.test_wrong_auth_static_method.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_service/Service.test_wrong_auth_static_method.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_tags/Tags.test_get_tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_tags/Tags.test_get_tags.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_data/test_tags/Tags.test_tag_from_tag_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_data/test_tags/Tags.test_tag_from_tag_name.yaml -------------------------------------------------------------------------------- /tests/integration/gitlab/test_forks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_forks.py -------------------------------------------------------------------------------- /tests/integration/gitlab/test_generic_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_generic_commands.py -------------------------------------------------------------------------------- /tests/integration/gitlab/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_issues.py -------------------------------------------------------------------------------- /tests/integration/gitlab/test_pull_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_pull_requests.py -------------------------------------------------------------------------------- /tests/integration/gitlab/test_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_releases.py -------------------------------------------------------------------------------- /tests/integration/gitlab/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_service.py -------------------------------------------------------------------------------- /tests/integration/gitlab/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/gitlab/test_tags.py -------------------------------------------------------------------------------- /tests/integration/pagure/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Contributors to the Packit project. 2 | # SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /tests/integration/pagure/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/base.py -------------------------------------------------------------------------------- /tests/integration/pagure/test_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_comments.py -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_comments/Comments.test_pr_comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_comments/Comments.test_pr_comments.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_comments/Comments.test_pr_comments_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_comments/Comments.test_pr_comments_filter.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_comments/Comments.test_pr_comments_reversed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_comments/Comments.test_pr_comments_reversed.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_comments/Comments.test_pr_comments_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_comments/Comments.test_pr_comments_search.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_forks/Forks.test_create_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_forks/Forks.test_create_fork.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_forks/Forks.test_create_fork_with_namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_forks/Forks.test_create_fork_with_namespace.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_forks/Forks.test_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_forks/Forks.test_fork.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_forks/Forks.test_fork_in_str.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_forks/Forks.test_fork_in_str.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_forks/Forks.test_fork_property.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_forks/Forks.test_fork_property.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_forks/Forks.test_nonexisting_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_forks/Forks.test_nonexisting_fork.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_add_and_remove_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_add_and_remove_group.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_add_and_remove_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_add_and_remove_user.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_branches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_branches.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_commit_statuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_commit_statuses.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_delete.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_description.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_description_property.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_description_property.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_full_repo_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_full_repo_name.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_file.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_files.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_owners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_owners.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_releases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_releases.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch_non_existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_sha_from_branch_non_existing.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_users_with_given_access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_users_with_given_access.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_web_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_get_web_url.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_git_urls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_git_urls.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_has_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_has_issues.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_no_file_server_error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_no_file_server_error.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_nonexisting_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_nonexisting_file.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_parent_project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_parent_project.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_pr_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_pr_permissions.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_username.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_username.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_create_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_create_issue.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_create_issue_with_assignees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_create_issue_with_assignees.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_create_with_disabled_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_create_with_disabled_issues.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_get_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_get_comment.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_issue_assignees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_issue_assignees.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_issue_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_issue_list.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_assignee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_assignee.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_author.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_labels.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_nonexisting_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_nonexisting_author.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_paginated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_issue_list_paginated.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_issues/Issues.test_issue_without_label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_issues/Issues.test_issue_without_label.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_create_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_create_release.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_is_private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_is_private.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_author.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_author_regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_author_regex.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_regex.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_regex_reversed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_regex_reversed.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_reversed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_comments_reversed.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_info.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_permissions.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_update_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_update_description.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_update_title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_issue_update_title.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_pr_comments_author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_pr_comments_author.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_pr_comments_author_regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_pr_comments_author_regex.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_pr_setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_pr_setters.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_pr_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_pr_status.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_token_is_none_then_set.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_token_is_none_then_set.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_update_pr_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_project_token/PagureProjectTokenCommands.test_update_pr_info.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_commits_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_commits_url.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_get_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_get_comment.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_head_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_head_commit.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_create_from_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_create_from_fork.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_create_from_parent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_create_from_parent.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_diff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_diff.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_diff_failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_diff_failing.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_diff_failing_and_succeding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_diff_failing_and_succeding.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_info.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_list.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_pr_patch.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_set_pr_flag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_set_pr_flag.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_source_project_upstream_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_source_project_upstream_branch.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_source_project_upstream_fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_source_project_upstream_fork.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_target_branch_head_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_pull_requests/PullRequests.test_target_branch_head_commit.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_service/Service.test_get_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_service/Service.test_get_group.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_service/Service.test_project_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_service/Service.test_project_create.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_service/Service.test_project_create_in_the_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_service/Service.test_project_create_in_the_group.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_service/Service.test_project_create_invalid_namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_service/Service.test_project_create_invalid_namespace.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_service/Service.test_project_create_unauthorized_namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_service/Service.test_project_create_unauthorized_namespace.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_data/test_service/Service.test_project_create_with_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_data/test_service/Service.test_project_create_with_description.yaml -------------------------------------------------------------------------------- /tests/integration/pagure/test_forks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_forks.py -------------------------------------------------------------------------------- /tests/integration/pagure/test_generic_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_generic_commands.py -------------------------------------------------------------------------------- /tests/integration/pagure/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_issues.py -------------------------------------------------------------------------------- /tests/integration/pagure/test_project_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_project_token.py -------------------------------------------------------------------------------- /tests/integration/pagure/test_pull_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_pull_requests.py -------------------------------------------------------------------------------- /tests/integration/pagure/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/integration/pagure/test_service.py -------------------------------------------------------------------------------- /tests/smoke.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/smoke.fmf -------------------------------------------------------------------------------- /tests/smoke.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -eux 4 | 5 | python3 -c "import ogr" 6 | -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Contributors to the Packit project. 2 | # SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /tests/unit/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/unit/test_factory.py -------------------------------------------------------------------------------- /tests/unit/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/unit/test_github.py -------------------------------------------------------------------------------- /tests/unit/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/unit/test_gitlab.py -------------------------------------------------------------------------------- /tests/unit/test_pagure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/unit/test_pagure.py -------------------------------------------------------------------------------- /tests/unit/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/unit/test_parsing.py -------------------------------------------------------------------------------- /tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tests/unit/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packit/ogr/HEAD/tox.ini --------------------------------------------------------------------------------