1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-20 18:59:08 +00:00

[PR #10327/5a5b2d2e backport][stable-11] remove unnecessary checks for unsupported python versions (#10330)

remove unnecessary checks for unsupported python versions (#10327)

(cherry picked from commit 5a5b2d2eed)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2025-07-02 06:58:13 +02:00 committed by GitHub
parent da3874c96d
commit 6b57b2bb74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 2 additions and 21 deletions

View file

@ -7,13 +7,10 @@ __metaclass__ = type
import re
import json
import sys
from httmock import with_httmock, urlmatch, response
from ansible_collections.community.internal_test_tools.tests.unit.compat import unittest
from ansible_collections.community.general.plugins.modules import github_repo
GITHUB_MINIMUM_PYTHON_VERSION = (2, 7)
@urlmatch(netloc=r'.*')
def debug_mock(url, request):
@ -167,11 +164,6 @@ def delete_repo_notfound_mock(url, request):
class TestGithubRepo(unittest.TestCase):
def setUp(self):
if sys.version_info < GITHUB_MINIMUM_PYTHON_VERSION:
self.skipTest("Python %s+ is needed for PyGithub" %
",".join(map(str, GITHUB_MINIMUM_PYTHON_VERSION)))
@with_httmock(get_orgs_mock)
@with_httmock(get_repo_notfound_mock)
@with_httmock(create_new_org_repo_mock)