Skip to content

Merge branch 'main' into test-improve-replay-mismatch-error-message-2

Sign in for the full log view
GitHub Actions / Test Results failed Sep 26, 2025 in 0s

8 fail, 1β€ˆ021 pass in 2m 30s

β€‡β€‡β€ˆβ€‡β€‡7 filesβ€„β€ƒβ€‡β€‡β€ˆβ€‡β€‡7 suites   2m 30s ⏱️
 1β€ˆ029 tests  1β€ˆ021 βœ…β€ƒ0 πŸ’€β€ƒβ€‡8 ❌
11β€ˆ508 runsβ€Šβ€ƒ11β€ˆ451 βœ…β€ƒ1 πŸ’€β€ƒ56 ❌

Results for commit 8d723d6.

Annotations

Check warning on line 0 in tests.Connection

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 7 runs failed: testRecordAndReplay[ReplayingHttpConnection-http-{"body":"BODY TEXT"}-\nGET\napi.github.com\nNone\n/user\n{'…asic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\n{"body":"BODY TEXT"}\n\n] (tests.Connection)

artifacts/Test Results (Python 3.10 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.11 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.12 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.13 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Windows)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on macOS)/pytest.xml [took 0s]
Raw output
assert False
 +  where False = isinstance(<_io.StringIO object at 0x7fc7a141e740>, ReplayDataFile)
 +    where <_io.StringIO object at 0x7fc7a141e740> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08d0ef0>.__file
replaying_connection_class = <class 'tests.Framework.ReplayingHttpConnection'>
protocol = 'http', response_body = '{"body":"BODY TEXT"}'
expected_recording = '\nGET\napi.github.com\nNone\n/user\n{\'Authorization\': \'Basic login_and_password_removed\', \'User-Agent\': \'PyGithub/Python\'}\nNone\n200\n[]\n{"body":"BODY TEXT"}\n\n'

    @pytest.mark.parametrize(
        ("replaying_connection_class", "protocol", "response_body", "expected_recording"),
        list(tuple(itertools.chain(*p)) for p in PARAMETERS),
    )
    @responses.activate
    def testRecordAndReplay(replaying_connection_class, protocol, response_body, expected_recording):
        file = StringIO()
        host = "api.github.com"
        verb = "GET"
        url = "/user"
        headers = {"Authorization": "Basic p4ssw0rd", "User-Agent": "PyGithub/Python"}
    
        response = Mock()
        response.status = 200
        response.getheaders.return_value = {}
        response.read.return_value = response_body
    
        connection = Mock()
        connection.getresponse.return_value = response
    
        # write mock response to buffer
        RecordingMockConnection.setOpenFile(lambda slf, mode: file)
>       recording_connection = RecordingMockConnection(protocol, host, None, lambda *args, **kwds: connection)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/Connection.py:95: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/Connection.py:70: in __init__
    super().__init__(protocol, host, port)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.Connection.RecordingMockConnection object at 0x7fc7a08d0ef0>
protocol = 'http', host = 'api.github.com', port = None, args = (), kwds = {}
@py_assert2 = <_io.StringIO object at 0x7fc7a141e740>, @py_assert5 = False
@py_format7 = 'assert False\n{False = isinstance(<_io.StringIO object at 0x7fc7a141e740>\n{<_io.StringIO object at 0x7fc7a141e740> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08d0ef0>.__file\n}, ReplayDataFile)\n}'

    def __init__(self, protocol, host, port, *args, **kwds):
        self.__file = self.__openFile("w")
        # write operations make the assumption that the file is not in binary mode
>       assert isinstance(self.__file, ReplayDataFile)
E       assert False
E        +  where False = isinstance(<_io.StringIO object at 0x7fc7a141e740>, ReplayDataFile)
E        +    where <_io.StringIO object at 0x7fc7a141e740> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08d0ef0>.__file

tests/Framework.py:142: AssertionError

Check warning on line 0 in tests.Connection

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 7 runs failed: testRecordAndReplay[ReplayingHttpConnection-http-{"body":"BODY\xa0TEXT"}-\nGET\napi.github.com\nNone\n/user\…c login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\n{"body":"BODY\xa0TEXT"}\n\n] (tests.Connection)

artifacts/Test Results (Python 3.10 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.11 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.12 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.13 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Windows)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on macOS)/pytest.xml [took 0s]
Raw output
assert False
 +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dbb4c0>, ReplayDataFile)
 +    where <_io.StringIO object at 0x7fc7a0dbb4c0> = <tests.Connection.RecordingMockConnection object at 0x7fc7a088ebd0>.__file
replaying_connection_class = <class 'tests.Framework.ReplayingHttpConnection'>
protocol = 'http', response_body = '{"body":"BODY\xa0TEXT"}'
expected_recording = '\nGET\napi.github.com\nNone\n/user\n{\'Authorization\': \'Basic login_and_password_removed\', \'User-Agent\': \'PyGithub/Python\'}\nNone\n200\n[]\n{"body":"BODY\xa0TEXT"}\n\n'

    @pytest.mark.parametrize(
        ("replaying_connection_class", "protocol", "response_body", "expected_recording"),
        list(tuple(itertools.chain(*p)) for p in PARAMETERS),
    )
    @responses.activate
    def testRecordAndReplay(replaying_connection_class, protocol, response_body, expected_recording):
        file = StringIO()
        host = "api.github.com"
        verb = "GET"
        url = "/user"
        headers = {"Authorization": "Basic p4ssw0rd", "User-Agent": "PyGithub/Python"}
    
        response = Mock()
        response.status = 200
        response.getheaders.return_value = {}
        response.read.return_value = response_body
    
        connection = Mock()
        connection.getresponse.return_value = response
    
        # write mock response to buffer
        RecordingMockConnection.setOpenFile(lambda slf, mode: file)
>       recording_connection = RecordingMockConnection(protocol, host, None, lambda *args, **kwds: connection)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/Connection.py:95: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/Connection.py:70: in __init__
    super().__init__(protocol, host, port)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.Connection.RecordingMockConnection object at 0x7fc7a088ebd0>
protocol = 'http', host = 'api.github.com', port = None, args = (), kwds = {}
@py_assert2 = <_io.StringIO object at 0x7fc7a0dbb4c0>, @py_assert5 = False
@py_format7 = 'assert False\n{False = isinstance(<_io.StringIO object at 0x7fc7a0dbb4c0>\n{<_io.StringIO object at 0x7fc7a0dbb4c0> = <tests.Connection.RecordingMockConnection object at 0x7fc7a088ebd0>.__file\n}, ReplayDataFile)\n}'

    def __init__(self, protocol, host, port, *args, **kwds):
        self.__file = self.__openFile("w")
        # write operations make the assumption that the file is not in binary mode
>       assert isinstance(self.__file, ReplayDataFile)
E       assert False
E        +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dbb4c0>, ReplayDataFile)
E        +    where <_io.StringIO object at 0x7fc7a0dbb4c0> = <tests.Connection.RecordingMockConnection object at 0x7fc7a088ebd0>.__file

tests/Framework.py:142: AssertionError

Check warning on line 0 in tests.Connection

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 7 runs failed: testRecordAndReplay[ReplayingHttpConnection-http-BODY TEXT-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY TEXT\n\n] (tests.Connection)

artifacts/Test Results (Python 3.10 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.11 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.12 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.13 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Windows)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on macOS)/pytest.xml [took 0s]
Raw output
assert False
 +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dba980>, ReplayDataFile)
 +    where <_io.StringIO object at 0x7fc7a0dba980> = <tests.Connection.RecordingMockConnection object at 0x7fc7a088e1e0>.__file
replaying_connection_class = <class 'tests.Framework.ReplayingHttpConnection'>
protocol = 'http', response_body = 'BODY TEXT'
expected_recording = "\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY TEXT\n\n"

    @pytest.mark.parametrize(
        ("replaying_connection_class", "protocol", "response_body", "expected_recording"),
        list(tuple(itertools.chain(*p)) for p in PARAMETERS),
    )
    @responses.activate
    def testRecordAndReplay(replaying_connection_class, protocol, response_body, expected_recording):
        file = StringIO()
        host = "api.github.com"
        verb = "GET"
        url = "/user"
        headers = {"Authorization": "Basic p4ssw0rd", "User-Agent": "PyGithub/Python"}
    
        response = Mock()
        response.status = 200
        response.getheaders.return_value = {}
        response.read.return_value = response_body
    
        connection = Mock()
        connection.getresponse.return_value = response
    
        # write mock response to buffer
        RecordingMockConnection.setOpenFile(lambda slf, mode: file)
>       recording_connection = RecordingMockConnection(protocol, host, None, lambda *args, **kwds: connection)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/Connection.py:95: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/Connection.py:70: in __init__
    super().__init__(protocol, host, port)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.Connection.RecordingMockConnection object at 0x7fc7a088e1e0>
protocol = 'http', host = 'api.github.com', port = None, args = (), kwds = {}
@py_assert2 = <_io.StringIO object at 0x7fc7a0dba980>, @py_assert5 = False
@py_format7 = 'assert False\n{False = isinstance(<_io.StringIO object at 0x7fc7a0dba980>\n{<_io.StringIO object at 0x7fc7a0dba980> = <tests.Connection.RecordingMockConnection object at 0x7fc7a088e1e0>.__file\n}, ReplayDataFile)\n}'

    def __init__(self, protocol, host, port, *args, **kwds):
        self.__file = self.__openFile("w")
        # write operations make the assumption that the file is not in binary mode
>       assert isinstance(self.__file, ReplayDataFile)
E       assert False
E        +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dba980>, ReplayDataFile)
E        +    where <_io.StringIO object at 0x7fc7a0dba980> = <tests.Connection.RecordingMockConnection object at 0x7fc7a088e1e0>.__file

tests/Framework.py:142: AssertionError

Check warning on line 0 in tests.Connection

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 7 runs failed: testRecordAndReplay[ReplayingHttpConnection-http-BODY\xa0TEXT-\nGET\napi.github.com\nNone\n/user\n{'Authoriz…ion': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY\xa0TEXT\n\n] (tests.Connection)

artifacts/Test Results (Python 3.10 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.11 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.12 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.13 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Windows)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on macOS)/pytest.xml [took 0s]
Raw output
assert False
 +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dba2c0>, ReplayDataFile)
 +    where <_io.StringIO object at 0x7fc7a0dba2c0> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b3b00>.__file
replaying_connection_class = <class 'tests.Framework.ReplayingHttpConnection'>
protocol = 'http', response_body = 'BODY\xa0TEXT'
expected_recording = "\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY\xa0TEXT\n\n"

    @pytest.mark.parametrize(
        ("replaying_connection_class", "protocol", "response_body", "expected_recording"),
        list(tuple(itertools.chain(*p)) for p in PARAMETERS),
    )
    @responses.activate
    def testRecordAndReplay(replaying_connection_class, protocol, response_body, expected_recording):
        file = StringIO()
        host = "api.github.com"
        verb = "GET"
        url = "/user"
        headers = {"Authorization": "Basic p4ssw0rd", "User-Agent": "PyGithub/Python"}
    
        response = Mock()
        response.status = 200
        response.getheaders.return_value = {}
        response.read.return_value = response_body
    
        connection = Mock()
        connection.getresponse.return_value = response
    
        # write mock response to buffer
        RecordingMockConnection.setOpenFile(lambda slf, mode: file)
>       recording_connection = RecordingMockConnection(protocol, host, None, lambda *args, **kwds: connection)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/Connection.py:95: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/Connection.py:70: in __init__
    super().__init__(protocol, host, port)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b3b00>
protocol = 'http', host = 'api.github.com', port = None, args = (), kwds = {}
@py_assert2 = <_io.StringIO object at 0x7fc7a0dba2c0>, @py_assert5 = False
@py_format7 = 'assert False\n{False = isinstance(<_io.StringIO object at 0x7fc7a0dba2c0>\n{<_io.StringIO object at 0x7fc7a0dba2c0> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b3b00>.__file\n}, ReplayDataFile)\n}'

    def __init__(self, protocol, host, port, *args, **kwds):
        self.__file = self.__openFile("w")
        # write operations make the assumption that the file is not in binary mode
>       assert isinstance(self.__file, ReplayDataFile)
E       assert False
E        +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dba2c0>, ReplayDataFile)
E        +    where <_io.StringIO object at 0x7fc7a0dba2c0> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b3b00>.__file

tests/Framework.py:142: AssertionError

Check warning on line 0 in tests.Connection

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 7 runs failed: testRecordAndReplay[ReplayingHttpsConnection-https-{"body":"BODY TEXT"}-\nGET\napi.github.com\nNone\n/user\n…asic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\n{"body":"BODY TEXT"}\n\n] (tests.Connection)

artifacts/Test Results (Python 3.10 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.11 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.12 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.13 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Windows)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on macOS)/pytest.xml [took 0s]
Raw output
assert False
 +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dbac80>, ReplayDataFile)
 +    where <_io.StringIO object at 0x7fc7a0dbac80> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08d1190>.__file
replaying_connection_class = <class 'tests.Framework.ReplayingHttpsConnection'>
protocol = 'https', response_body = '{"body":"BODY TEXT"}'
expected_recording = '\nGET\napi.github.com\nNone\n/user\n{\'Authorization\': \'Basic login_and_password_removed\', \'User-Agent\': \'PyGithub/Python\'}\nNone\n200\n[]\n{"body":"BODY TEXT"}\n\n'

    @pytest.mark.parametrize(
        ("replaying_connection_class", "protocol", "response_body", "expected_recording"),
        list(tuple(itertools.chain(*p)) for p in PARAMETERS),
    )
    @responses.activate
    def testRecordAndReplay(replaying_connection_class, protocol, response_body, expected_recording):
        file = StringIO()
        host = "api.github.com"
        verb = "GET"
        url = "/user"
        headers = {"Authorization": "Basic p4ssw0rd", "User-Agent": "PyGithub/Python"}
    
        response = Mock()
        response.status = 200
        response.getheaders.return_value = {}
        response.read.return_value = response_body
    
        connection = Mock()
        connection.getresponse.return_value = response
    
        # write mock response to buffer
        RecordingMockConnection.setOpenFile(lambda slf, mode: file)
>       recording_connection = RecordingMockConnection(protocol, host, None, lambda *args, **kwds: connection)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/Connection.py:95: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/Connection.py:70: in __init__
    super().__init__(protocol, host, port)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.Connection.RecordingMockConnection object at 0x7fc7a08d1190>
protocol = 'https', host = 'api.github.com', port = None, args = (), kwds = {}
@py_assert2 = <_io.StringIO object at 0x7fc7a0dbac80>, @py_assert5 = False
@py_format7 = 'assert False\n{False = isinstance(<_io.StringIO object at 0x7fc7a0dbac80>\n{<_io.StringIO object at 0x7fc7a0dbac80> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08d1190>.__file\n}, ReplayDataFile)\n}'

    def __init__(self, protocol, host, port, *args, **kwds):
        self.__file = self.__openFile("w")
        # write operations make the assumption that the file is not in binary mode
>       assert isinstance(self.__file, ReplayDataFile)
E       assert False
E        +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dbac80>, ReplayDataFile)
E        +    where <_io.StringIO object at 0x7fc7a0dbac80> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08d1190>.__file

tests/Framework.py:142: AssertionError

Check warning on line 0 in tests.Connection

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 7 runs failed: testRecordAndReplay[ReplayingHttpsConnection-https-{"body":"BODY\xa0TEXT"}-\nGET\napi.github.com\nNone\n/use…c login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\n{"body":"BODY\xa0TEXT"}\n\n] (tests.Connection)

artifacts/Test Results (Python 3.10 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.11 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.12 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.13 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Windows)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on macOS)/pytest.xml [took 0s]
Raw output
assert False
 +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dbb100>, ReplayDataFile)
 +    where <_io.StringIO object at 0x7fc7a0dbb100> = <tests.Connection.RecordingMockConnection object at 0x7fc7a088c680>.__file
replaying_connection_class = <class 'tests.Framework.ReplayingHttpsConnection'>
protocol = 'https', response_body = '{"body":"BODY\xa0TEXT"}'
expected_recording = '\nGET\napi.github.com\nNone\n/user\n{\'Authorization\': \'Basic login_and_password_removed\', \'User-Agent\': \'PyGithub/Python\'}\nNone\n200\n[]\n{"body":"BODY\xa0TEXT"}\n\n'

    @pytest.mark.parametrize(
        ("replaying_connection_class", "protocol", "response_body", "expected_recording"),
        list(tuple(itertools.chain(*p)) for p in PARAMETERS),
    )
    @responses.activate
    def testRecordAndReplay(replaying_connection_class, protocol, response_body, expected_recording):
        file = StringIO()
        host = "api.github.com"
        verb = "GET"
        url = "/user"
        headers = {"Authorization": "Basic p4ssw0rd", "User-Agent": "PyGithub/Python"}
    
        response = Mock()
        response.status = 200
        response.getheaders.return_value = {}
        response.read.return_value = response_body
    
        connection = Mock()
        connection.getresponse.return_value = response
    
        # write mock response to buffer
        RecordingMockConnection.setOpenFile(lambda slf, mode: file)
>       recording_connection = RecordingMockConnection(protocol, host, None, lambda *args, **kwds: connection)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/Connection.py:95: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/Connection.py:70: in __init__
    super().__init__(protocol, host, port)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.Connection.RecordingMockConnection object at 0x7fc7a088c680>
protocol = 'https', host = 'api.github.com', port = None, args = (), kwds = {}
@py_assert2 = <_io.StringIO object at 0x7fc7a0dbb100>, @py_assert5 = False
@py_format7 = 'assert False\n{False = isinstance(<_io.StringIO object at 0x7fc7a0dbb100>\n{<_io.StringIO object at 0x7fc7a0dbb100> = <tests.Connection.RecordingMockConnection object at 0x7fc7a088c680>.__file\n}, ReplayDataFile)\n}'

    def __init__(self, protocol, host, port, *args, **kwds):
        self.__file = self.__openFile("w")
        # write operations make the assumption that the file is not in binary mode
>       assert isinstance(self.__file, ReplayDataFile)
E       assert False
E        +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dbb100>, ReplayDataFile)
E        +    where <_io.StringIO object at 0x7fc7a0dbb100> = <tests.Connection.RecordingMockConnection object at 0x7fc7a088c680>.__file

tests/Framework.py:142: AssertionError

Check warning on line 0 in tests.Connection

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 7 runs failed: testRecordAndReplay[ReplayingHttpsConnection-https-BODY TEXT-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY TEXT\n\n] (tests.Connection)

artifacts/Test Results (Python 3.10 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.11 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.12 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.13 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Windows)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on macOS)/pytest.xml [took 0s]
Raw output
assert False
 +  where False = isinstance(<_io.StringIO object at 0x7fc7a0db9f00>, ReplayDataFile)
 +    where <_io.StringIO object at 0x7fc7a0db9f00> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b2e70>.__file
replaying_connection_class = <class 'tests.Framework.ReplayingHttpsConnection'>
protocol = 'https', response_body = 'BODY TEXT'
expected_recording = "\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY TEXT\n\n"

    @pytest.mark.parametrize(
        ("replaying_connection_class", "protocol", "response_body", "expected_recording"),
        list(tuple(itertools.chain(*p)) for p in PARAMETERS),
    )
    @responses.activate
    def testRecordAndReplay(replaying_connection_class, protocol, response_body, expected_recording):
        file = StringIO()
        host = "api.github.com"
        verb = "GET"
        url = "/user"
        headers = {"Authorization": "Basic p4ssw0rd", "User-Agent": "PyGithub/Python"}
    
        response = Mock()
        response.status = 200
        response.getheaders.return_value = {}
        response.read.return_value = response_body
    
        connection = Mock()
        connection.getresponse.return_value = response
    
        # write mock response to buffer
        RecordingMockConnection.setOpenFile(lambda slf, mode: file)
>       recording_connection = RecordingMockConnection(protocol, host, None, lambda *args, **kwds: connection)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/Connection.py:95: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/Connection.py:70: in __init__
    super().__init__(protocol, host, port)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b2e70>
protocol = 'https', host = 'api.github.com', port = None, args = (), kwds = {}
@py_assert2 = <_io.StringIO object at 0x7fc7a0db9f00>, @py_assert5 = False
@py_format7 = 'assert False\n{False = isinstance(<_io.StringIO object at 0x7fc7a0db9f00>\n{<_io.StringIO object at 0x7fc7a0db9f00> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b2e70>.__file\n}, ReplayDataFile)\n}'

    def __init__(self, protocol, host, port, *args, **kwds):
        self.__file = self.__openFile("w")
        # write operations make the assumption that the file is not in binary mode
>       assert isinstance(self.__file, ReplayDataFile)
E       assert False
E        +  where False = isinstance(<_io.StringIO object at 0x7fc7a0db9f00>, ReplayDataFile)
E        +    where <_io.StringIO object at 0x7fc7a0db9f00> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b2e70>.__file

tests/Framework.py:142: AssertionError

Check warning on line 0 in tests.Connection

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 7 runs failed: testRecordAndReplay[ReplayingHttpsConnection-https-BODY\xa0TEXT-\nGET\napi.github.com\nNone\n/user\n{'Author…ion': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY\xa0TEXT\n\n] (tests.Connection)

artifacts/Test Results (Python 3.10 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.11 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.12 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.13 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Ubuntu)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on Windows)/pytest.xml [took 0s]
artifacts/Test Results (Python 3.9 on macOS)/pytest.xml [took 0s]
Raw output
assert False
 +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dba140>, ReplayDataFile)
 +    where <_io.StringIO object at 0x7fc7a0dba140> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b2720>.__file
replaying_connection_class = <class 'tests.Framework.ReplayingHttpsConnection'>
protocol = 'https', response_body = 'BODY\xa0TEXT'
expected_recording = "\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY\xa0TEXT\n\n"

    @pytest.mark.parametrize(
        ("replaying_connection_class", "protocol", "response_body", "expected_recording"),
        list(tuple(itertools.chain(*p)) for p in PARAMETERS),
    )
    @responses.activate
    def testRecordAndReplay(replaying_connection_class, protocol, response_body, expected_recording):
        file = StringIO()
        host = "api.github.com"
        verb = "GET"
        url = "/user"
        headers = {"Authorization": "Basic p4ssw0rd", "User-Agent": "PyGithub/Python"}
    
        response = Mock()
        response.status = 200
        response.getheaders.return_value = {}
        response.read.return_value = response_body
    
        connection = Mock()
        connection.getresponse.return_value = response
    
        # write mock response to buffer
        RecordingMockConnection.setOpenFile(lambda slf, mode: file)
>       recording_connection = RecordingMockConnection(protocol, host, None, lambda *args, **kwds: connection)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/Connection.py:95: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/Connection.py:70: in __init__
    super().__init__(protocol, host, port)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b2720>
protocol = 'https', host = 'api.github.com', port = None, args = (), kwds = {}
@py_assert2 = <_io.StringIO object at 0x7fc7a0dba140>, @py_assert5 = False
@py_format7 = 'assert False\n{False = isinstance(<_io.StringIO object at 0x7fc7a0dba140>\n{<_io.StringIO object at 0x7fc7a0dba140> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b2720>.__file\n}, ReplayDataFile)\n}'

    def __init__(self, protocol, host, port, *args, **kwds):
        self.__file = self.__openFile("w")
        # write operations make the assumption that the file is not in binary mode
>       assert isinstance(self.__file, ReplayDataFile)
E       assert False
E        +  where False = isinstance(<_io.StringIO object at 0x7fc7a0dba140>, ReplayDataFile)
E        +    where <_io.StringIO object at 0x7fc7a0dba140> = <tests.Connection.RecordingMockConnection object at 0x7fc7a08b2720>.__file

tests/Framework.py:142: AssertionError

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

1029 tests found

There are 1029 tests, see "Raw output" for the full list of tests.
Raw output
tests.ApplicationOAuth.ApplicationOAuth ‑ testCheckError
tests.ApplicationOAuth.ApplicationOAuth ‑ testEnterpriseGetAccessToken
tests.ApplicationOAuth.ApplicationOAuth ‑ testEnterpriseLoginURL
tests.ApplicationOAuth.ApplicationOAuth ‑ testEnterpriseSupport
tests.ApplicationOAuth.ApplicationOAuth ‑ testGetAccessToken
tests.ApplicationOAuth.ApplicationOAuth ‑ testGetAccessTokenBadCode
tests.ApplicationOAuth.ApplicationOAuth ‑ testGetAccessTokenUnknownError
tests.ApplicationOAuth.ApplicationOAuth ‑ testGetAccessTokenWithExpiry
tests.ApplicationOAuth.ApplicationOAuth ‑ testLoginURL
tests.ApplicationOAuth.ApplicationOAuth ‑ testRefreshAccessToken
tests.ApplicationOAuth.ApplicationOAuth ‑ testRefreshAccessTokenBadCode
tests.ApplicationOAuth.ApplicationOAuth ‑ testRefreshAccessTokenUnknownError
tests.Artifact.Artifact ‑ testDelete
tests.Artifact.Artifact ‑ testGetArtifactsFromRepo
tests.Artifact.Artifact ‑ testGetArtifactsFromRepoWithName
tests.Artifact.Artifact ‑ testGetArtifactsFromWorkflow
tests.Artifact.Artifact ‑ testGetNonexistentArtifact
tests.Artifact.Artifact ‑ testGetSingleArtifactFromRepo
tests.AuthenticatedUser.AuthenticatedUser ‑ testAcceptInvitation
tests.AuthenticatedUser.AuthenticatedUser ‑ testAttributes
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateAuthorizationWithAllArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateAuthorizationWithClientIdAndSecret
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateAuthorizationWithoutArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateFork
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateGist
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateGistWithoutDescription
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateKey
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateMigration
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateProject
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateRepoFromTemplate
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateRepoFromTemplateWithAllArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateRepository
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateRepositoryWithAllArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testCreateRepositoryWithAutoInit
tests.AuthenticatedUser.AuthenticatedUser ‑ testEditWithAllArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testEditWithoutArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testEmails
tests.AuthenticatedUser.AuthenticatedUser ‑ testFollowing
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetAuthorizations
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetEvents
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetGists
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetInvitations
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetIssues
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetIssuesWithAllArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetKeys
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetMemberships
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetMigrations
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetNotification
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetNotifications
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetNotificationsWithOtherArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetOrganizationEvents
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetOrgs
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetRepos
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetReposWithArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetStarredGists
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetTeams
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetUserIssues
tests.AuthenticatedUser.AuthenticatedUser ‑ testGetUserIssuesWithAllArguments
tests.AuthenticatedUser.AuthenticatedUser ‑ testInstallations
tests.AuthenticatedUser.AuthenticatedUser ‑ testMarkNotificationsAsRead
tests.AuthenticatedUser.AuthenticatedUser ‑ testStarring
tests.AuthenticatedUser.AuthenticatedUser ‑ testSubscriptions
tests.AuthenticatedUser.AuthenticatedUser ‑ testWatching
tests.Authentication.Authentication ‑ testAddingCustomHeaders
tests.Authentication.Authentication ‑ testAppAuthAuthentication
tests.Authentication.Authentication ‑ testAppAuthAuthenticationWithGithubIntegrationRequesterArgs
tests.Authentication.Authentication ‑ testAppAuthAuthenticationWithGithubRequesterArgs
tests.Authentication.Authentication ‑ testAppAuthTokenAuthentication
tests.Authentication.Authentication ‑ testAppAuthentication
tests.Authentication.Authentication ‑ testAppInstallationAuthAuthentication
tests.Authentication.Authentication ‑ testAppInstallationAuthAuthenticationRequesterArgs
tests.Authentication.Authentication ‑ testAppUserAuthentication
tests.Authentication.Authentication ‑ testAuthorizationHeaderWithLogin
tests.Authentication.Authentication ‑ testAuthorizationHeaderWithToken
tests.Authentication.Authentication ‑ testBasicAuthentication
tests.Authentication.Authentication ‑ testCreateJWT
tests.Authentication.Authentication ‑ testCreateJWTWithExpiration
tests.Authentication.Authentication ‑ testJWTAuthentication
tests.Authentication.Authentication ‑ testLoginAuthentication
tests.Authentication.Authentication ‑ testNetrcAuth
tests.Authentication.Authentication ‑ testNetrcAuthFails
tests.Authentication.Authentication ‑ testNoAuthentication
tests.Authentication.Authentication ‑ testOAuthAuthentication
tests.Authentication.Authentication ‑ testTokenAuthentication
tests.Authentication.Authentication ‑ testUserAgent
tests.Authorization.Authorization ‑ testAttributes
tests.Authorization.Authorization ‑ testDelete
tests.Authorization.Authorization ‑ testEdit
tests.Autolink.Autolink ‑ testAttributes
tests.BadAttributes.BadAttributes ‑ testBadAttributeInClassAttribute
tests.BadAttributes.BadAttributes ‑ testBadAttributeTransformation
tests.BadAttributes.BadAttributes ‑ testBadSimpleAttribute
tests.BadAttributes.BadAttributes ‑ testBadSimpleAttributeInList
tests.BadAttributes.BadAttributes ‑ testBadTransformedAttribute
tests.BadAttributes.BadAttributes ‑ testBadTransformedAttributeInDict
tests.BadAttributes.BadAttributes ‑ testBadTransformedAttributeInList
tests.BadAttributes.BadAttributes ‑ testIssue195
tests.Branch.Branch ‑ testAddRequiredSignatures
tests.Branch.Branch ‑ testAddTeamPushRestrictions
tests.Branch.Branch ‑ testAddUserPushRestrictions
tests.Branch.Branch ‑ testAdminEnforcement
tests.Branch.Branch ‑ testAllowDeletions
tests.Branch.Branch ‑ testAttributes
tests.Branch.Branch ‑ testEditProtection
tests.Branch.Branch ‑ testEditProtectionDismissalUsersWithUserOwnedBranch
tests.Branch.Branch ‑ testEditProtectionPushRestrictionsAndDismissalUser
tests.Branch.Branch ‑ testEditProtectionPushRestrictionsWithUserOwnedBranch
tests.Branch.Branch ‑ testEditRequiredPullRequestReviews
tests.Branch.Branch ‑ testEditRequiredPullRequestReviewsWithTooLargeApprovingReviewCount
tests.Branch.Branch ‑ testEditRequiredPullRequestReviewsWithUserBranchAndDismissalUsers
tests.Branch.Branch ‑ testEditRequiredStatusChecks
tests.Branch.Branch ‑ testEditRequiredStatusChecksChecks
tests.Branch.Branch ‑ testEditRequiredStatusChecksContexts
tests.Branch.Branch ‑ testGetRequiredSignatures
tests.Branch.Branch ‑ testRemoveProtection
tests.Branch.Branch ‑ testRemovePushRestrictions
tests.Branch.Branch ‑ testRemoveRequiredPullRequestReviews
tests.Branch.Branch ‑ testRemoveRequiredSignatures
tests.Branch.Branch ‑ testRemoveRequiredStatusChecks
tests.Branch.Branch ‑ testRemoveTeamPushRestrictions
tests.Branch.Branch ‑ testRemoveUserPushRestrictions
tests.Branch.Branch ‑ testReplaceTeamPushRestrictions
tests.Branch.Branch ‑ testReplaceUserPushRestrictions
tests.BranchProtection.BranchProtection ‑ testAttributes
tests.CheckRun.CheckRun ‑ testAttributes
tests.CheckRun.CheckRun ‑ testCheckRunAnnotationAttributes
tests.CheckRun.CheckRun ‑ testCheckRunOutputAttributes
tests.CheckRun.CheckRun ‑ testCreateCheckRunCompleted
tests.CheckRun.CheckRun ‑ testCreateCheckRunInProgress
tests.CheckRun.CheckRun ‑ testGetCheckRunsForRef
tests.CheckRun.CheckRun ‑ testGetCheckRunsForRefFilterByCheckName
tests.CheckRun.CheckRun ‑ testGetCheckRunsForRefFilterByFilter
tests.CheckRun.CheckRun ‑ testGetCheckRunsForRefFilterByStatus
tests.CheckRun.CheckRun ‑ testListCheckRunAnnotations
tests.CheckRun.CheckRun ‑ testUpdateCheckRunAll
tests.CheckRun.CheckRun ‑ testUpdateCheckRunFailure
tests.CheckRun.CheckRun ‑ testUpdateCheckRunSuccess
tests.CheckSuite.CheckSuite ‑ testAttributes
tests.CheckSuite.CheckSuite ‑ testCheckSuiteRerequest
tests.CheckSuite.CheckSuite ‑ testCreateCheckSuite
tests.CheckSuite.CheckSuite ‑ testGetCheckRuns
tests.CheckSuite.CheckSuite ‑ testGetCheckRunsFilterByCheckName
tests.CheckSuite.CheckSuite ‑ testGetCheckRunsFilterByFilter
tests.CheckSuite.CheckSuite ‑ testGetCheckRunsFilterByStatus
tests.CheckSuite.CheckSuite ‑ testGetCheckSuitesForRef
tests.CheckSuite.CheckSuite ‑ testGetCheckSuitesForRefFilterByAppId
tests.CheckSuite.CheckSuite ‑ testGetCheckSuitesForRefFilterByCheckName
tests.CheckSuite.CheckSuite ‑ testUpdateCheckSuitesPreferences
tests.Commit.Commit ‑ testAttributes
tests.Commit.Commit ‑ testCreateComment
tests.Commit.Commit ‑ testCreateCommentOnFileLine
tests.Commit.Commit ‑ testCreateCommentOnFilePosition
tests.Commit.Commit ‑ testCreateStatusWithAllParameters
tests.Commit.Commit ‑ testCreateStatusWithoutOptionalParameters
tests.Commit.Commit ‑ testGetBranchesWhereHead
tests.Commit.Commit ‑ testGetComments
tests.Commit.Commit ‑ testGetPulls
tests.CommitCombinedStatus.CommitCombinedStatus ‑ testAttributes
tests.CommitComment.CommitComment ‑ testAttributes
tests.CommitComment.CommitComment ‑ testCreateReaction
tests.CommitComment.CommitComment ‑ testDelete
tests.CommitComment.CommitComment ‑ testDeleteReaction
tests.CommitComment.CommitComment ‑ testEdit
tests.CommitComment.CommitComment ‑ testGetReactions
tests.CommitStatus.CommitStatus ‑ testAttributes
tests.ConditionalRequestUpdate.ConditionalRequestUpdate ‑ testDidNotUpdate
tests.ConditionalRequestUpdate.ConditionalRequestUpdate ‑ testDidUpdate
tests.ConditionalRequestUpdate.ConditionalRequestUpdate ‑ testUpdateObjectWithoutEtag
tests.Connection ‑ testRecordAndReplay[ReplayingHttpConnection-http-BODY TEXT-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY TEXT\n\n]
tests.Connection ‑ testRecordAndReplay[ReplayingHttpConnection-http-BODY\xa0TEXT-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY\xa0TEXT\n\n]
tests.Connection ‑ testRecordAndReplay[ReplayingHttpConnection-http-{"body":"BODY TEXT"}-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\n{"body":"BODY TEXT"}\n\n]
tests.Connection ‑ testRecordAndReplay[ReplayingHttpConnection-http-{"body":"BODY\xa0TEXT"}-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\n{"body":"BODY\xa0TEXT"}\n\n]
tests.Connection ‑ testRecordAndReplay[ReplayingHttpsConnection-https-BODY TEXT-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY TEXT\n\n]
tests.Connection ‑ testRecordAndReplay[ReplayingHttpsConnection-https-BODY\xa0TEXT-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\nBODY\xa0TEXT\n\n]
tests.Connection ‑ testRecordAndReplay[ReplayingHttpsConnection-https-{"body":"BODY TEXT"}-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\n{"body":"BODY TEXT"}\n\n]
tests.Connection ‑ testRecordAndReplay[ReplayingHttpsConnection-https-{"body":"BODY\xa0TEXT"}-\nGET\napi.github.com\nNone\n/user\n{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}\nNone\n200\n[]\n{"body":"BODY\xa0TEXT"}\n\n]
tests.ContentFile.ContentFile ‑ testAttributes
tests.Copilot.Copilot ‑ testAddSeats
tests.Copilot.Copilot ‑ testAttributes
tests.Copilot.Copilot ‑ testGetSeats
tests.Copilot.Copilot ‑ testRemoveSeats
tests.DependabotAlert.DependabotAlert ‑ testAttributes
tests.DependabotAlert.DependabotAlert ‑ testGetAlertsWithAllArguments
tests.DependabotAlert.DependabotAlert ‑ testMultipleAlerts
tests.DependabotAlert.DependabotAlert ‑ testRepr
tests.DependabotAlert.DependabotAlert ‑ testUpdateAlertDismissed
tests.DependabotAlert.DependabotAlert ‑ testUpdateAlertDismissedWithoutReason
tests.DependabotAlert.DependabotAlert ‑ testUpdateAlertOpen
tests.Deployment.Deployment ‑ testAttributes
tests.DeploymentStatus.DeploymentStatus ‑ testAttributes
tests.DeploymentStatus.DeploymentStatus ‑ testCreate
tests.DeploymentStatus.DeploymentStatus ‑ testGetStatuses
tests.Download.Download ‑ testAttributes
tests.Download.Download ‑ testDelete
tests.Enterprise.Enterprise ‑ testHttp
tests.Enterprise.Enterprise ‑ testHttps
tests.Enterprise.Enterprise ‑ testLongUrl
tests.Enterprise.Enterprise ‑ testSpecificPort
tests.Enterprise.Enterprise ‑ testUnknownUrlScheme
tests.EnterpriseAdmin.EnterpriseAdmin ‑ testAttributes
tests.EnterpriseAdmin.EnterpriseAdmin ‑ testGetConsumedLicenses
tests.EnterpriseAdmin.EnterpriseAdmin ‑ testGetEnterpriseUsers
tests.Environment.Environment ‑ testAttributes
tests.Environment.Environment ‑ testCreateEnvironment
tests.Environment.Environment ‑ testDeleteEnvironment
tests.Environment.Environment ‑ testEnvironmentSecret
tests.Environment.Environment ‑ testEnvironmentSecrets
tests.Environment.Environment ‑ testEnvironmentVariable
tests.Environment.Environment ‑ testEnvironmentVariables
tests.Environment.Environment ‑ testGetEnvironments
tests.Environment.Environment ‑ testProtectionRules
tests.Environment.Environment ‑ testReviewers
tests.Environment.Environment ‑ testUpdateEnvironment
tests.Equality.Equality ‑ testBranchEquality
tests.Equality.Equality ‑ testUserDifference
tests.Equality.Equality ‑ testUserEquality
tests.Event.Event ‑ testAttributes
tests.Exceptions.Exceptions ‑ testBadAuthentication
tests.Exceptions.Exceptions ‑ testExceptionPickling
tests.Exceptions.Exceptions ‑ testInvalidInput
tests.Exceptions.Exceptions ‑ testJSONParseError
tests.Exceptions.Exceptions ‑ testNonJsonDataReturnedByGithub
tests.Exceptions.Exceptions ‑ testUnknownObject
tests.Exceptions.Exceptions ‑ testUnknownUser
tests.Exceptions.SpecificExceptions ‑ test2FARequired
tests.Exceptions.SpecificExceptions ‑ testAuthenticatedRateLimitExceeded
tests.Exceptions.SpecificExceptions ‑ testBadCredentials
tests.Exceptions.SpecificExceptions ‑ testBadUserAgent
tests.Exceptions.SpecificExceptions ‑ testIncompletableObject
tests.Exceptions.SpecificExceptions ‑ testRateLimitExceeded
tests.Exceptions.SpecificExceptions ‑ testUnknownObject
tests.ExposeAllAttributes.ExposeAllAttributes ‑ testAllClasses
tests.Gist.Gist ‑ testAttributes
tests.Gist.Gist ‑ testCreateComment
tests.Gist.Gist ‑ testDelete
tests.Gist.Gist ‑ testDeleteFile
tests.Gist.Gist ‑ testEditWithAllParameters
tests.Gist.Gist ‑ testEditWithoutParameters
tests.Gist.Gist ‑ testFork
tests.Gist.Gist ‑ testGetComments
tests.Gist.Gist ‑ testRenameFile
tests.Gist.Gist ‑ testStarring
tests.GistComment.GistComment ‑ testAttributes
tests.GistComment.GistComment ‑ testDelete
tests.GistComment.GistComment ‑ testEdit
tests.GitBlob.GitBlob ‑ testAttributes
tests.GitCommit.GitCommit ‑ testAttributes
tests.GitCommitVerification.GitCommitVerification ‑ testAttributes
tests.GitRef.GitRef ‑ testAttributes
tests.GitRef.GitRef ‑ testDelete
tests.GitRef.GitRef ‑ testEdit
tests.GitRef.GitRef ‑ testEditWithForce
tests.GitRelease.GitRelease ‑ testAttributes
tests.GitRelease.GitRelease ‑ testCreateGitTagAndRelease
tests.GitRelease.GitRelease ‑ testDelete
tests.GitRelease.GitRelease ‑ testGetAssets
tests.GitRelease.GitRelease ‑ testGetLatestRelease
tests.GitRelease.GitRelease ‑ testGetRelease
tests.GitRelease.GitRelease ‑ testUpdate
tests.GitRelease.GitRelease ‑ testUploadAsset
tests.GitRelease.GitRelease ‑ testUploadAssetFileLike
tests.GitRelease.GitRelease ‑ testUploadAssetFromMemory
tests.GitRelease.GitRelease ‑ testUploadAssetWithName
tests.GitReleaseAsset.GitReleaseAsset ‑ testAttributes
tests.GitReleaseAsset.GitReleaseAsset ‑ testDownloadAssetFile
tests.GitReleaseAsset.GitReleaseAsset ‑ testDownloadAssetStream
tests.GitTag.GitTag ‑ testAttributes
tests.GitTree.GitTree ‑ testAttributes
tests.GithubApp.GithubApp ‑ testAttributes
tests.GithubApp.GithubApp ‑ testGetAuthenticatedApp
tests.GithubIntegration.GithubIntegration ‑ testAppAuth
tests.GithubIntegration.GithubIntegration ‑ testDeprecatedAppAuth
tests.GithubIntegration.GithubIntegration ‑ testGetAccessToken
tests.GithubIntegration.GithubIntegration ‑ testGetAccessTokenForNoInstallation
tests.GithubIntegration.GithubIntegration ‑ testGetAccessTokenWithExpiredJWT
tests.GithubIntegration.GithubIntegration ‑ testGetAccessTokenWithInvalidData
tests.GithubIntegration.GithubIntegration ‑ testGetAccessTokenWithInvalidPermissions
tests.GithubIntegration.GithubIntegration ‑ testGetApp
tests.GithubIntegration.GithubIntegration ‑ testGetAppInstallation
tests.GithubIntegration.GithubIntegration ‑ testGetGithubForInstallation
tests.GithubIntegration.GithubIntegration ‑ testGetInstallationNotFound
tests.GithubIntegration.GithubIntegration ‑ testGetInstallationWithExpiredJWT
tests.GithubIntegration.GithubIntegration ‑ testGetInstallations
tests.GithubIntegration.GithubIntegration ‑ testGetOrgInstallation
tests.GithubIntegration.GithubIntegration ‑ testGetRepoInstallation
tests.GithubIntegration.GithubIntegration ‑ testGetUserInstallation
tests.GithubIntegration.GithubIntegration ‑ testNoneAppAuth
tests.GithubIntegration.GithubIntegration ‑ testRequiredAppAuth
tests.GithubObject.GithubObject ‑ testApiType
tests.GithubObject.GithubObject ‑ testAttributesAsRest
tests.GithubObject.GithubObject ‑ testMakeDatetimeAttribute
tests.GithubObject.GithubObject ‑ testMakeDatetimeAttributeBadValues
tests.GithubObject.GithubObject ‑ testMakeHttpDatetimeAttribute
tests.GithubObject.GithubObject ‑ testMakeHttpDatetimeAttributeBadValues
tests.GithubObject.GithubObject ‑ testMakeTimestampAttribute
tests.GithubObject.GithubObject ‑ testMakeTimetsampAttributeBadValues
tests.GithubObject.GithubObject ‑ testMakeUnionClassAttributeFromTypeKey
tests.GithubObject.GithubObject ‑ testMakeUnionClassAttributeFromTypeKeyAndValueKey
tests.GithubObject.GithubObject ‑ testMakeUnionClassAttributeFromTypeName
tests.GithubRetry.GithubRetry ‑ test_403_with_non_retryable_error
tests.GithubRetry.GithubRetry ‑ test_403_with_retry_after
tests.GithubRetry.GithubRetry ‑ test_error_in_get_content
tests.GithubRetry.GithubRetry ‑ test_misc_response
tests.GithubRetry.GithubRetry ‑ test_misc_response_exponential_backoff
tests.GithubRetry.GithubRetry ‑ test_primary_rate_error_with_reset
tests.GithubRetry.GithubRetry ‑ test_primary_rate_error_with_reset_and_exponential_backoff
tests.GithubRetry.GithubRetry ‑ test_primary_rate_error_without_reset
tests.GithubRetry.GithubRetry ‑ test_primary_rate_error_without_reset_with_exponential_backoff
tests.GithubRetry.GithubRetry ‑ test_secondary_rate_error_with_reset
tests.GithubRetry.GithubRetry ‑ test_secondary_rate_error_with_reset_and_exponential_backoff
tests.GithubRetry.GithubRetry ‑ test_secondary_rate_error_without_reset
tests.GithubRetry.GithubRetry ‑ test_secondary_rate_error_without_reset_with_exponential_backoff
tests.Github_.Github ‑ testGetEmojis
tests.Github_.Github ‑ testGetEvents
tests.Github_.Github ‑ testGetGists
tests.Github_.Github ‑ testGetGistsWithSince
tests.Github_.Github ‑ testGetGitignoreTemplate
tests.Github_.Github ‑ testGetGitignoreTemplates
tests.Github_.Github ‑ testGetGlobalAdvisories
tests.Github_.Github ‑ testGetGlobalAdvisoriesByCVE
tests.Github_.Github ‑ testGetGlobalAdvisoriesByGHSA
tests.Github_.Github ‑ testGetGlobalAdvisoriesManyFilters
tests.Github_.Github ‑ testGetHook
tests.Github_.Github ‑ testGetHookDeliveries
tests.Github_.Github ‑ testGetHookDelivery
tests.Github_.Github ‑ testGetHooks
tests.Github_.Github ‑ testGetLicense
tests.Github_.Github ‑ testGetLicenses
tests.Github_.Github ‑ testGetOrganizations
tests.Github_.Github ‑ testGetOrganizationsSince
tests.Github_.Github ‑ testGetRepoFromFullName
tests.Github_.Github ‑ testGetRepoFromId
tests.Github_.Github ‑ testGetRepos
tests.Github_.Github ‑ testGetReposSince
tests.Github_.Github ‑ testGetUserById
tests.Github_.Github ‑ testGetUsers
tests.Github_.Github ‑ testGetUsersSince
tests.Github_.Github ‑ testRequester
tests.Github_.Github ‑ testStringOfNotSet
tests.GlobalAdvisory.GlobalAdvisory ‑ testAttributes
tests.GlobalAdvisory.GlobalAdvisory ‑ testNewlyReleased
tests.GraphQl.GraphQl ‑ testDefaultUrl
tests.GraphQl.GraphQl ‑ testMutation
tests.GraphQl.GraphQl ‑ testMutationClass
tests.GraphQl.GraphQl ‑ testNode
tests.GraphQl.GraphQl ‑ testNodeClass
tests.GraphQl.GraphQl ‑ testOtherPort
tests.GraphQl.GraphQl ‑ testOtherUrl
tests.GraphQl.GraphQl ‑ testPaginationAndRestIntegration
tests.GraphQl.GraphQl ‑ testQuery
tests.GraphQl.GraphQl ‑ testQueryGraphQlClass
tests.GraphQl.GraphQl ‑ testQueryRestClass
tests.GraphQl.GraphQl ‑ testRequesterGraphQlPrefix
tests.Hook.Hook ‑ testAttributes
tests.Hook.Hook ‑ testDelete
tests.Hook.Hook ‑ testEditWithAllParameters
tests.Hook.Hook ‑ testEditWithMinimalParameters
tests.Hook.Hook ‑ testPing
tests.Hook.Hook ‑ testTest
tests.Installation.Installation ‑ testAttributes
tests.Installation.Installation ‑ testGetGithubForInstallation
tests.Installation.Installation ‑ testGetRepos
tests.Installation.Installation ‑ testRequester
tests.Issue.Issue ‑ testAddAndRemoveAssignees
tests.Issue.Issue ‑ testAddAndRemoveLabels
tests.Issue.Issue ‑ testAddAndRemoveLabelsWithStringArguments
tests.Issue.Issue ‑ testAttributes
tests.Issue.Issue ‑ testCreateComment
tests.Issue.Issue ‑ testCreateReaction
tests.Issue.Issue ‑ testDeleteAndSetLabels
tests.Issue.Issue ‑ testDeleteAndSetLabelsWithStringArguments
tests.Issue.Issue ‑ testDeleteReaction
tests.Issue.Issue ‑ testEditResetAssignee
tests.Issue.Issue ‑ testEditResetMilestone
tests.Issue.Issue ‑ testEditWithAllParameters
tests.Issue.Issue ‑ testEditWithStateReasonNotPlanned
tests.Issue.Issue ‑ testEditWithStateReasonReopened
tests.Issue.Issue ‑ testEditWithoutParameters
tests.Issue.Issue ‑ testGetComments
tests.Issue.Issue ‑ testGetCommentsSince
tests.Issue.Issue ‑ testGetEvents
tests.Issue.Issue ‑ testGetLabels
tests.Issue.Issue ‑ testGetReactions
tests.Issue.Issue ‑ testGetTimeline
tests.Issue.Issue ‑ testLock
tests.Issue.Issue ‑ testUnlock
tests.Issue131.Issue131 ‑ testGetPullWithOrgHeadUser
tests.Issue131.Issue131 ‑ testGetPullsWithOrgHeadUser
tests.Issue133.Issue133 ‑ testGetPageWithoutInitialArguments
tests.Issue134.Issue134 ‑ testGetAuthorizationsFailsWhenAutenticatedThroughOAuth
tests.Issue134.Issue134 ‑ testGetAuthorizationsSucceedsWhenAutenticatedThroughLoginPassword
tests.Issue134.Issue134 ‑ testGetOAuthScopesFromHeader
tests.Issue139.Issue139 ‑ testCompletion
tests.Issue140.Issue140 ‑ testGetDirContentsThenLazyCompletionOfFile
tests.Issue140.Issue140 ‑ testGetDirContentsWithRef
tests.Issue140.Issue140 ‑ testGetFileContents
tests.Issue142.Issue142 ‑ testDecodeJson
tests.Issue174.Issue174 ‑ testGetDirContentsWithHttpRedirect
tests.Issue2030.Organization ‑ testIssue2030CreateProject
tests.Issue214.Issue214 ‑ testAssignees
tests.Issue214.Issue214 ‑ testCollaborators
tests.Issue214.Issue214 ‑ testCreateIssue
tests.Issue214.Issue214 ‑ testEditIssue
tests.Issue214.Issue214 ‑ testGetIssues
tests.Issue216.Issue216 ‑ testIteration
tests.Issue278.Issue278 ‑ testIteration
tests.Issue33.Issue33 ‑ testClosedIssues
tests.Issue33.Issue33 ‑ testOpenIssues
tests.Issue494.Issue494 ‑ testRepr
tests.Issue50.Issue50 ‑ testAddLabelToIssue
tests.Issue50.Issue50 ‑ testCreateIssueWithLabel
tests.Issue50.Issue50 ‑ testCreateLabel
tests.Issue50.Issue50 ‑ testGetIssuesWithLabel
tests.Issue50.Issue50 ‑ testGetLabel
tests.Issue50.Issue50 ‑ testGetLabels
tests.Issue50.Issue50 ‑ testIssueGetLabels
tests.Issue50.Issue50 ‑ testIssueLabels
tests.Issue50.Issue50 ‑ testRemoveLabelFromIssue
tests.Issue50.Issue50 ‑ testSetIssueLabels
tests.Issue54.Issue54 ‑ testConversion
tests.Issue572.Issue572 ‑ testIssueAsPullRequest
tests.Issue572.Issue572 ‑ testPullReqeustAsIssue
tests.Issue80.Issue80 ‑ testIgnoreHttpsFromGithubEnterprise
tests.Issue80.Issue80 ‑ testIgnoreHttpsFromGithubEnterpriseWithPort
tests.Issue823.Issue823 ‑ testGetPendingInvitationAttributes
tests.Issue87.Issue87 ‑ testCreateIssueWithEscapedPercentInBody
tests.Issue87.Issue87 ‑ testCreateIssueWithEscapedPercentInTitle
tests.Issue87.Issue87 ‑ testCreateIssueWithPercentInBody
tests.Issue87.Issue87 ‑ testCreateIssueWithPercentInTitle
tests.Issue937.Issue937 ‑ testCollaboratorsAffiliation
tests.Issue945.Issue945 ‑ testReservedPaginatedListAttributePreservation
tests.IssueComment.IssueComment ‑ testAttributes
tests.IssueComment.IssueComment ‑ testCreateReaction
tests.IssueComment.IssueComment ‑ testDelete
tests.IssueComment.IssueComment ‑ testDeleteReaction
tests.IssueComment.IssueComment ‑ testEdit
tests.IssueComment.IssueComment ‑ testGetReactions
tests.IssueComment.IssueComment ‑ testMinimize
tests.IssueComment.IssueComment ‑ testUnminimize
tests.IssueDependenciesSummary.IssueDependenciesSummary ‑ testAttributes
tests.IssueEvent.IssueEvent ‑ testEvent_added_to_project_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_assigned_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_base_ref_changed_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_closed_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_converted_note_to_issue_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_demilestoned_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_head_ref_deleted_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_head_ref_restored_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_labeled_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_locked_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_marked_as_duplicate_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_mentioned_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_merged_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_milestoned_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_moved_columns_in_project_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_referenced_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_removed_from_project_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_renamed_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_reopened_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_review_dismissed_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_review_request_removed_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_review_requested_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_subscribed_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_unassigned_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_unlabeled_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_unlocked_Attributes
tests.IssueEvent.IssueEvent ‑ testEvent_unmarked_as_duplicate_Attributes
tests.IssueType.IssueType ‑ testAttributes
tests.Label.Label ‑ testAttributes
tests.Label.Label ‑ testDelete
tests.Label.Label ‑ testEdit
tests.License.License ‑ testAttributes
tests.Logging_.Logging ‑ testLoggingDoesNotModifyRequestHeaders
tests.Logging_.Logging ‑ testLoggingWithBaseUrl
tests.Logging_.Logging ‑ testLoggingWithBasicAuthentication
tests.Logging_.Logging ‑ testLoggingWithOAuthAuthentication
tests.Logging_.Logging ‑ testLoggingWithoutAuthentication
tests.Logging_.Logging ‑ testMaskingOfCustomAuthHeader
tests.Markdown.Markdown ‑ testRenderGithubFlavoredMarkdown
tests.Markdown.Markdown ‑ testRenderMarkdown
tests.Membership.Membership ‑ testAttributes
tests.Migration.Migration ‑ testAttributes
tests.Migration.Migration ‑ testDelete
tests.Migration.Migration ‑ testGetArchiveUrlWhenDeleted
tests.Migration.Migration ‑ testGetArchiveUrlWhenExported
tests.Migration.Migration ‑ testGetArchiveUrlWhenNotExported
tests.Migration.Migration ‑ testGetStatus
tests.Migration.Migration ‑ testUnlockRepo
tests.Milestone.Milestone ‑ testAttributes
tests.Milestone.Milestone ‑ testDelete
tests.Milestone.Milestone ‑ testEditWithAllParameters
tests.Milestone.Milestone ‑ testEditWithMinimalParameters
tests.Milestone.Milestone ‑ testGetLabels
tests.NamedUser.NamedUser ‑ testAttributes
tests.NamedUser.NamedUser ‑ testAttributesOfOtherUser
tests.NamedUser.NamedUser ‑ testGetEvents
tests.NamedUser.NamedUser ‑ testGetFollowers
tests.NamedUser.NamedUser ‑ testGetFollowing
tests.NamedUser.NamedUser ‑ testGetGists
tests.NamedUser.NamedUser ‑ testGetKeys
tests.NamedUser.NamedUser ‑ testGetOrganizationMembership
tests.NamedUser.NamedUser ‑ testGetOrganizationMembershipNotMember
tests.NamedUser.NamedUser ‑ testGetOrgs
tests.NamedUser.NamedUser ‑ testGetPublicEvents
tests.NamedUser.NamedUser ‑ testGetPublicReceivedEvents
tests.NamedUser.NamedUser ‑ testGetReceivedEvents
tests.NamedUser.NamedUser ‑ testGetRepo
tests.NamedUser.NamedUser ‑ testGetRepos
tests.NamedUser.NamedUser ‑ testGetReposWithAllArgs
tests.NamedUser.NamedUser ‑ testGetStarred
tests.NamedUser.NamedUser ‑ testGetSubscriptions
tests.NamedUser.NamedUser ‑ testGetWatched
tests.NamedUser.NamedUser ‑ testHasInFollowing
tests.NamedUser.NamedUser ‑ testUserEquality
tests.NamedUser.OrganizationInvitation ‑ testAttributes
tests.NamedUser.OrganizationInvitation ‑ testCancel
tests.NamedUser1430.NamedUser1430 ‑ testGetProjects
tests.Notification.Notification ‑ testMarkAsDone
tests.Notification.Notification ‑ testMarkAsRead
tests.Organization.Organization ‑ testAddMembersAdminRole
tests.Organization.Organization ‑ testAddMembersDefaultRole
tests.Organization.Organization ‑ testAttachDetachSecurityConfig
tests.Organization.Organization ‑ testAttributes
tests.Organization.Organization ‑ testCreateActionsSecret
tests.Organization.Organization ‑ testCreateCodeSecurityConfigs
tests.Organization.Organization ‑ testCreateCustomProperties
tests.Organization.Organization ‑ testCreateCustomProperty
tests.Organization.Organization ‑ testCreateCustomPropertyValues
tests.Organization.Organization ‑ testCreateDependabotSecret
tests.Organization.Organization ‑ testCreateDependabotSecretSelected
tests.Organization.Organization ‑ testCreateFork
tests.Organization.Organization ‑ testCreateHookWithAllParameters
tests.Organization.Organization ‑ testCreateHookWithMinimalParameters
tests.Organization.Organization ‑ testCreateMigration
tests.Organization.Organization ‑ testCreateRepoFromTemplate
tests.Organization.Organization ‑ testCreateRepoFromTemplateWithAllArguments
tests.Organization.Organization ‑ testCreateRepoWithAllArguments
tests.Organization.Organization ‑ testCreateRepoWithMinimalArguments
tests.Organization.Organization ‑ testCreateRepositoryWithAutoInit
tests.Organization.Organization ‑ testCreateSecretSelected
tests.Organization.Organization ‑ testCreateTeam
tests.Organization.Organization ‑ testCreateTeamWithAllArguments
tests.Organization.Organization ‑ testCreateVariable
tests.Organization.Organization ‑ testCreateVariableSelected
tests.Organization.Organization ‑ testDeleteHook
tests.Organization.Organization ‑ testDeleteSelfHostedRunner
tests.Organization.Organization ‑ testEditHookWithAllParameters
tests.Organization.Organization ‑ testEditHookWithMinimalParameters
tests.Organization.Organization ‑ testEditWithAllArguments
tests.Organization.Organization ‑ testEditWithoutArguments
tests.Organization.Organization ‑ testGetCodeSecurityConfig
tests.Organization.Organization ‑ testGetCodeSecurityConfigs
tests.Organization.Organization ‑ testGetCustomProperties
tests.Organization.Organization ‑ testGetCustomProperty
tests.Organization.Organization ‑ testGetDependabotAlerts
tests.Organization.Organization ‑ testGetDependabotAlertsWithAllArguments
tests.Organization.Organization ‑ testGetDependabotSecrets
tests.Organization.Organization ‑ testGetEvents
tests.Organization.Organization ‑ testGetHook
tests.Organization.Organization ‑ testGetHookDeliveries
tests.Organization.Organization ‑ testGetHookDelivery
tests.Organization.Organization ‑ testGetHooks
tests.Organization.Organization ‑ testGetInstallations
tests.Organization.Organization ‑ testGetIssues
tests.Organization.Organization ‑ testGetIssuesWithAllArguments
tests.Organization.Organization ‑ testGetMembers
tests.Organization.Organization ‑ testGetMigrations
tests.Organization.Organization ‑ testGetOutsideCollaborators
tests.Organization.Organization ‑ testGetPublicMembers
tests.Organization.Organization ‑ testGetRepos
tests.Organization.Organization ‑ testGetReposForCodeSecurityConfig
tests.Organization.Organization ‑ testGetReposSorted
tests.Organization.Organization ‑ testGetReposWithType
tests.Organization.Organization ‑ testGetSecret
tests.Organization.Organization ‑ testGetSecrets
tests.Organization.Organization ‑ testGetSecretsFail
tests.Organization.Organization ‑ testGetSelfHostedRunnerApplications
tests.Organization.Organization ‑ testGetSelfHostedRunners
tests.Organization.Organization ‑ testGetTeamBySlug
tests.Organization.Organization ‑ testGetTeams
tests.Organization.Organization ‑ testGetVariable
tests.Organization.Organization ‑ testGetVariables
tests.Organization.Organization ‑ testInviteUserAsNonOwner
tests.Organization.Organization ‑ testInviteUserByEmail
tests.Organization.Organization ‑ testInviteUserByName
tests.Organization.Organization ‑ testInviteUserWithBoth
tests.Organization.Organization ‑ testInviteUserWithNeither
tests.Organization.Organization ‑ testInviteUserWithRoleAndTeam
tests.Organization.Organization ‑ testListCustomPropertyValues
tests.Organization.Organization ‑ testMembers
tests.Organization.Organization ‑ testOrgGetSecretAssertion
tests.Organization.Organization ‑ testOrgSecretEdit
tests.Organization.Organization ‑ testOutsideCollaborators
tests.Organization.Organization ‑ testPublicMembers
tests.Organization.Organization ‑ testRemoveCustomProperty
tests.Organization.Organization ‑ testSelfHostedRunnerGetRegistrationToken
tests.Organization.Organization ‑ testSelfHostedRunnerGetRemoveToken
tests.Organization.Organization ‑ testSelfHostedRunnerJitConfig
tests.Organization.Organization ‑ testSetDefaultCodeSecurityConfig
tests.Organization1437.Organization1437 ‑ testCreateProject
tests.OrganizationHasInMembers.OrganizationHasInMembers ‑ testHasInMembers
tests.PaginatedList.PaginatedList ‑ testCustomPerPage
tests.PaginatedList.PaginatedList ‑ testCustomPerPageIteration
tests.PaginatedList.PaginatedList ‑ testCustomPerPageReversedIteration
tests.PaginatedList.PaginatedList ‑ testCustomPerPageWithGetPage
tests.PaginatedList.PaginatedList ‑ testCustomPerPageWithNoUrlParams
tests.PaginatedList.PaginatedList ‑ testGetFirstPage
tests.PaginatedList.PaginatedList ‑ testGetThirdPage
tests.PaginatedList.PaginatedList ‑ testGettingTheReversedListDoesNotModifyTheOriginalList
tests.PaginatedList.PaginatedList ‑ testGraphQlPagination
tests.PaginatedList.PaginatedList ‑ testIntIndexingAfterIteration
tests.PaginatedList.PaginatedList ‑ testIntIndexingInFirstPage
tests.PaginatedList.PaginatedList ‑ testIntIndexingInThirdPage
tests.PaginatedList.PaginatedList ‑ testInterruptedIteration
tests.PaginatedList.PaginatedList ‑ testInterruptedIterationInSlice
tests.PaginatedList.PaginatedList ‑ testIsApiType
tests.PaginatedList.PaginatedList ‑ testIteration
tests.PaginatedList.PaginatedList ‑ testIterationWithPrefetchedFirstPage
tests.PaginatedList.PaginatedList ‑ testMergeDicts
tests.PaginatedList.PaginatedList ‑ testNoFirstPage
tests.PaginatedList.PaginatedList ‑ testOverrideAttributes
tests.PaginatedList.PaginatedList ‑ testReversedIterationSupportsBuiltinReversed
tests.PaginatedList.PaginatedList ‑ testReversedIterationSupportsIterator
tests.PaginatedList.PaginatedList ‑ testReversedIterationWithMultiplePages
tests.PaginatedList.PaginatedList ‑ testReversedIterationWithSinglePage
tests.PaginatedList.PaginatedList ‑ testSeveralIterations
tests.PaginatedList.PaginatedList ‑ testSliceIndexingInFirstPage
tests.PaginatedList.PaginatedList ‑ testSliceIndexingUntilEnd
tests.PaginatedList.PaginatedList ‑ testSliceIndexingUntilFourthPage
tests.PaginatedList.PaginatedList ‑ testTotalCountWithDeprecationLink
tests.PaginatedList.PaginatedList ‑ testTotalCountWithDictionary
tests.PaginatedList.PaginatedList ‑ testTotalCountWithNoLastPage
tests.Permissions.Permissions ‑ testUserRepoPermissionAttributes
tests.Permissions.Permissions ‑ testUserRepoPermissionRepresentation
tests.Persistence.Persistence ‑ testLoad
tests.Persistence.Persistence ‑ testLoadAndUpdate
tests.Pickle.Pickle ‑ testPickleAuth
tests.Pickle.Pickle ‑ testPickleAuthSetup
tests.Pickle.Pickle ‑ testPickleGithub
tests.Pickle.Pickle ‑ testPicklePaginatedList
tests.Pickle.Pickle ‑ testPickleRepository
tests.PoolSize.PoolSize ‑ testReturnsRepoAfterSettingPoolSize
tests.PoolSize.PoolSize ‑ testReturnsRepoAfterSettingPoolSizeHttp
tests.Project.Project ‑ testAttributes
tests.Project.Project ‑ testGetOrganizationProjects
tests.Project.Project ‑ testGetRepositoryProjects
tests.Project1434.Project1434 ‑ testDelete
tests.Project1434.Project1434 ‑ testEditWithAllParameters
tests.Project1434.Project1434 ‑ testEditWithoutParameters
tests.ProjectCard.ProjectCard ‑ testAttributes
tests.ProjectCard.ProjectCard ‑ testCreateFromIssue
tests.ProjectCard.ProjectCard ‑ testCreateWithNote
tests.ProjectCard.ProjectCard ‑ testDelete
tests.ProjectCard.ProjectCard ‑ testEditArchived
tests.ProjectCard.ProjectCard ‑ testEditNote
tests.ProjectCard.ProjectCard ‑ testEditWithoutParameters
tests.ProjectCard.ProjectCard ‑ testGetAll
tests.ProjectCard.ProjectCard ‑ testGetContent
tests.ProjectCard.ProjectCard ‑ testMove
tests.ProjectColumn.ProjectColumn ‑ testAttributes
tests.ProjectColumn.ProjectColumn ‑ testCreate
tests.ProjectColumn.ProjectColumn ‑ testCreateCard
tests.ProjectColumn.ProjectColumn ‑ testDelete
tests.ProjectColumn.ProjectColumn ‑ testEdit
tests.ProjectColumn.ProjectColumn ‑ testGetAllCards
tests.ProjectColumn.ProjectColumn ‑ testGetArchivedCards
tests.ProjectColumn.ProjectColumn ‑ testGetCards
tests.ProjectColumn.ProjectColumn ‑ testGetNotArchivedCards
tests.ProjectColumn.ProjectColumn ‑ testGetProjectColumn
tests.ProjectColumn.ProjectColumn ‑ testMoveAfter
tests.ProjectColumn.ProjectColumn ‑ testMoveFirst
tests.ProjectColumn.ProjectColumn ‑ testMoveLast
tests.PublicKey.PublicKey ‑ testAttributes
tests.PublicKey.PublicKey ‑ testAttributes_with_int_key_id
tests.PullRequest.PullRequest ‑ testAddAndRemoveAssignees
tests.PullRequest.PullRequest ‑ testAddAndRemoveLabels
tests.PullRequest.PullRequest ‑ testAddAndRemoveLabelsWithStringArguments
tests.PullRequest.PullRequest ‑ testAttributes
tests.PullRequest.PullRequest ‑ testAttributesIssue256
tests.PullRequest.PullRequest ‑ testConvertToDraft
tests.PullRequest.PullRequest ‑ testCreateComment
tests.PullRequest.PullRequest ‑ testCreateIssueComment
tests.PullRequest.PullRequest ‑ testCreateMultilineReviewComment
tests.PullRequest.PullRequest ‑ testCreateMultilineReviewCommentAsSuggestion
tests.PullRequest.PullRequest ‑ testCreateMultilineReviewCommentChoosingSide
tests.PullRequest.PullRequest ‑ testCreateReviewCommentInReplyTo
tests.PullRequest.PullRequest ‑ testCreateReviewCommentSubjectType
tests.PullRequest.PullRequest ‑ testDeleteAndSetLabels
tests.PullRequest.PullRequest ‑ testDeleteAndSetLabelsWithStringArguments
tests.PullRequest.PullRequest ‑ testDeleteBranch
tests.PullRequest.PullRequest ‑ testDeleteOnMerge
tests.PullRequest.PullRequest ‑ testDisableAutomerge
tests.PullRequest.PullRequest ‑ testEditWithAllArguments
tests.PullRequest.PullRequest ‑ testEditWithoutArguments
tests.PullRequest.PullRequest ‑ testEnableAutomerge
tests.PullRequest.PullRequest ‑ testEnableAutomergeDefaultValues
tests.PullRequest.PullRequest ‑ testEnableAutomergeError
tests.PullRequest.PullRequest ‑ testEnableAutomergeNotValidMergeMethod
tests.PullRequest.PullRequest ‑ testForceDeleteBranch
tests.PullRequest.PullRequest ‑ testGetComments
tests.PullRequest.PullRequest ‑ testGetCommits
tests.PullRequest.PullRequest ‑ testGetFiles
tests.PullRequest.PullRequest ‑ testGetIssueComment
tests.PullRequest.PullRequest ‑ testGetIssueComments
tests.PullRequest.PullRequest ‑ testGetIssueEvents
tests.PullRequest.PullRequest ‑ testGetIssueTimeline
tests.PullRequest.PullRequest ‑ testGetLabels
tests.PullRequest.PullRequest ‑ testGetReviewComments
tests.PullRequest.PullRequest ‑ testMarkReadyForReview
tests.PullRequest.PullRequest ‑ testMerge
tests.PullRequest.PullRequest ‑ testMergeWithCommitMessage
tests.PullRequest.PullRequest ‑ testRestoreBranch
tests.PullRequest.PullRequest ‑ testReviewRequests
tests.PullRequest.PullRequest ‑ testUpdateBranch
tests.PullRequest1168.PullRequest1168 ‑ testGetIssue
tests.PullRequest1168.PullRequest1168 ‑ testGetPullRequest
tests.PullRequest1169.PullRequest1169 ‑ testReviewApproveWithoutBody
tests.PullRequest1375.PullRequest1375 ‑ testCreateReviewCommentReply
tests.PullRequest1682.PullRequest1682 ‑ test_no_parameters
tests.PullRequest1682.PullRequest1682 ‑ test_object_parameters
tests.PullRequest1682.PullRequest1682 ‑ test_string_parameters
tests.PullRequest1684.PullRequest1684 ‑ testDeleteRunnerId
tests.PullRequest1684.PullRequest1684 ‑ testDeleteRunnerObject
tests.PullRequest1684.PullRequest1684 ‑ testGetRunners
tests.PullRequest2408.PullRequest2408 ‑ test_get_workflow_runs
tests.PullRequestComment.PullRequestComment ‑ testAttributes
tests.PullRequestComment.PullRequestComment ‑ testCreateReaction
tests.PullRequestComment.PullRequestComment ‑ testDelete
tests.PullRequestComment.PullRequestComment ‑ testDeleteReaction
tests.PullRequestComment.PullRequestComment ‑ testEdit
tests.PullRequestComment.PullRequestComment ‑ testGetReactions
tests.PullRequestFile.PullRequestFile ‑ testAttributes
tests.PullRequestReview.PullRequestReview ‑ testAttributes
tests.PullRequestReview.PullRequestReview ‑ testDismiss
tests.PullRequestReview.PullRequestReview ‑ testDoesNotModifyPullRequest
tests.PullRequestReview.PullRequestReview ‑ testEdit
tests.PullRequestReview1856.PullRequestReview1856 ‑ testDelete
tests.RateLimitOverview.RateLimitOverview ‑ testAttributes
tests.RateLimiting.RateLimiting ‑ testGetRateLimit
tests.RateLimiting.RateLimiting ‑ testRateLimiting
tests.RateLimiting.RateLimiting ‑ testResetTime
tests.RawData.RawData ‑ testCompletedObject
tests.RawData.RawData ‑ testCreateObjectFromRawData
tests.RawData.RawData ‑ testNonCompletableObject
tests.RawData.RawData ‑ testNotYetCompletedObject
tests.Reaction.Reaction ‑ testAttributes
tests.Reaction.Reaction ‑ testDelete
tests.ReleaseAsset.PublicReleaseAsset ‑ testAttributes
tests.ReleaseAsset.PublicReleaseAsset ‑ testDownload
tests.ReleaseAsset.ReleaseAsset ‑ testAttributes
tests.ReleaseAsset.ReleaseAsset ‑ testDelete
tests.ReleaseAsset.ReleaseAsset ‑ testUpdate
tests.Repository.LazyRepository ‑ testChangeAutomateFixWhenNoVulnerabilityAlert
tests.Repository.LazyRepository ‑ testDisableAutomatedSecurityFixes
tests.Repository.LazyRepository ‑ testDisableVulnerabilityAlert
tests.Repository.LazyRepository ‑ testEnableAutomatedSecurityFixes
tests.Repository.LazyRepository ‑ testEnableVulnerabilityAlert
tests.Repository.LazyRepository ‑ testGetIssues
tests.Repository.LazyRepository ‑ testGetVulnerabilityAlert
tests.Repository.LazyRepository ‑ testGetVulnerabilityAlertWhenTurnedOff
tests.Repository.LazyRepository ‑ testOwner
tests.Repository.LazyRepository ‑ testRequester
tests.Repository.Repository ‑ testAddToCollaboratorsCustomRole
tests.Repository.Repository ‑ testAsUrlParam
tests.Repository.Repository ‑ testAssignees
tests.Repository.Repository ‑ testAttributes
tests.Repository.Repository ‑ testBadSubscribePubSubHubbub
tests.Repository.Repository ‑ testCodeScanAlerts
tests.Repository.Repository ‑ testCollaboratorPermission
tests.Repository.Repository ‑ testCollaboratorPermissionNoPushAccess
tests.Repository.Repository ‑ testCollaboratorRoleName
tests.Repository.Repository ‑ testCollaborators
tests.Repository.Repository ‑ testCompare
tests.Repository.Repository ‑ testCompareCommitPagination
tests.Repository.Repository ‑ testCreateAutolink
tests.Repository.Repository ‑ testCreateDeployment
tests.Repository.Repository ‑ testCreateFile
tests.Repository.Repository ‑ testCreateFork
tests.Repository.Repository ‑ testCreateForkOrg
tests.Repository.Repository ‑ testCreateGitBlob
tests.Repository.Repository ‑ testCreateGitCommit
tests.Repository.Repository ‑ testCreateGitCommitWithAllArguments
tests.Repository.Repository ‑ testCreateGitCommitWithParents
tests.Repository.Repository ‑ testCreateGitRef
tests.Repository.Repository ‑ testCreateGitRelease
tests.Repository.Repository ‑ testCreateGitReleaseGenerateReleaseNotes
tests.Repository.Repository ‑ testCreateGitReleaseWithAllArguments
tests.Repository.Repository ‑ testCreateGitTag
tests.Repository.Repository ‑ testCreateGitTagWithAllArguments
tests.Repository.Repository ‑ testCreateGitTree
tests.Repository.Repository ‑ testCreateGitTreeWithBaseTree
tests.Repository.Repository ‑ testCreateGitTreeWithNullSha
tests.Repository.Repository ‑ testCreateGitTreeWithSha
tests.Repository.Repository ‑ testCreateHookWithAllParameters
tests.Repository.Repository ‑ testCreateHookWithMinimalParameters
tests.Repository.Repository ‑ testCreateIssue
tests.Repository.Repository ‑ testCreateIssueWithAllArguments
tests.Repository.Repository ‑ testCreateIssueWithAllArgumentsStringLabel
tests.Repository.Repository ‑ testCreateKey
tests.Repository.Repository ‑ testCreateLabel
tests.Repository.Repository ‑ testCreateMilestone
tests.Repository.Repository ‑ testCreateMilestoneWithMinimalArguments
tests.Repository.Repository ‑ testCreateProject
tests.Repository.Repository ‑ testCreatePull
tests.Repository.Repository ‑ testCreatePullFromIssue
tests.Repository.Repository ‑ testCreateRepoActionsSecret
tests.Repository.Repository ‑ testCreateRepoDependabotSecret
tests.Repository.Repository ‑ testCreateRepositoryDispatch
tests.Repository.Repository ‑ testCreateSourceImport
tests.Repository.Repository ‑ testDelete
tests.Repository.Repository ‑ testDeleteFile
tests.Repository.Repository ‑ testEditWithAllArguments
tests.Repository.Repository ‑ testEditWithDefaultBranch
tests.Repository.Repository ‑ testEditWithoutArguments
tests.Repository.Repository ‑ testGenerateReleaseNotes
tests.Repository.Repository ‑ testGenerateReleaseNotesWithAllArguments
tests.Repository.Repository ‑ testGetArchiveLink
tests.Repository.Repository ‑ testGetAutolinks
tests.Repository.Repository ‑ testGetAutomatedSecurityFixes
tests.Repository.Repository ‑ testGetBranch
tests.Repository.Repository ‑ testGetComments
tests.Repository.Repository ‑ testGetCommits
tests.Repository.Repository ‑ testGetCommitsWithArguments
tests.Repository.Repository ‑ testGetCommitsWithAuthor
tests.Repository.Repository ‑ testGetCommitsWithSinceUntil
tests.Repository.Repository ‑ testGetContents
tests.Repository.Repository ‑ testGetContentsDir
tests.Repository.Repository ‑ testGetContentsDirWithSlash
tests.Repository.Repository ‑ testGetContentsWithRef
tests.Repository.Repository ‑ testGetContributors
tests.Repository.Repository ‑ testGetCustomProperties
tests.Repository.Repository ‑ testGetDeployments
tests.Repository.Repository ‑ testGetDiscussion
tests.Repository.Repository ‑ testGetDiscussions
tests.Repository.Repository ‑ testGetDiscussionsByAnswered
tests.Repository.Repository ‑ testGetDiscussionsByCategory
tests.Repository.Repository ‑ testGetDiscussionsByStates
tests.Repository.Repository ‑ testGetDownloads
tests.Repository.Repository ‑ testGetEvents
tests.Repository.Repository ‑ testGetForks
tests.Repository.Repository ‑ testGetGitRef
tests.Repository.Repository ‑ testGetGitRefWithIssue102Reverted
tests.Repository.Repository ‑ testGetGitRefs
tests.Repository.Repository ‑ testGetGitTreeWithRecursive
tests.Repository.Repository ‑ testGetHookDeliveries
tests.Repository.Repository ‑ testGetHookDelivery
tests.Repository.Repository ‑ testGetHooks
tests.Repository.Repository ‑ testGetIssues
tests.Repository.Repository ‑ testGetIssuesComments
tests.Repository.Repository ‑ testGetIssuesEvents
tests.Repository.Repository ‑ testGetIssuesWithArguments
tests.Repository.Repository ‑ testGetIssuesWithWildcards
tests.Repository.Repository ‑ testGetKeys
tests.Repository.Repository ‑ testGetLabel
tests.Repository.Repository ‑ testGetLabels
tests.Repository.Repository ‑ testGetLanguages
tests.Repository.Repository ‑ testGetLicense
tests.Repository.Repository ‑ testGetMatchingRefs
tests.Repository.Repository ‑ testGetMilestones
tests.Repository.Repository ‑ testGetMilestonesWithArguments
tests.Repository.Repository ‑ testGetNetworkEvents
tests.Repository.Repository ‑ testGetPendingInvitations
tests.Repository.Repository ‑ testGetPulls
tests.Repository.Repository ‑ testGetPullsComments
tests.Repository.Repository ‑ testGetPullsWithArguments
tests.Repository.Repository ‑ testGetRepositoryWith301Redirect
tests.Repository.Repository ‑ testGetSourceImport
tests.Repository.Repository ‑ testGetStargazers
tests.Repository.Repository ‑ testGetStargazersWithDates
tests.Repository.Repository ‑ testGetSubscribers
tests.Repository.Repository ‑ testGetTeams
tests.Repository.Repository ‑ testGetTopics
tests.Repository.Repository ‑ testGetWatchers
tests.Repository.Repository ‑ testGetWorkflowId
tests.Repository.Repository ‑ testGetWorkflowRuns
tests.Repository.Repository ‑ testGetWorkflowRunsCreated
tests.Repository.Repository ‑ testGetWorkflows
tests.Repository.Repository ‑ testLegacySearchIssues
tests.Repository.Repository ‑ testMarkNotificationsAsRead
tests.Repository.Repository ‑ testMergeUpstreamFailure
tests.Repository.Repository ‑ testMergeUpstreamSuccess
tests.Repository.Repository ‑ testMergeWithConflict
tests.Repository.Repository ‑ testMergeWithMessage
tests.Repository.Repository ‑ testMergeWithNothingToDo
tests.Repository.Repository ‑ testMergeWithoutMessage
tests.Repository.Repository ‑ testRemoveAutolink
tests.Repository.Repository ‑ testRemoveInvitation
tests.Repository.Repository ‑ testRenameBranchObject
tests.Repository.Repository ‑ testRenameBranchString
tests.Repository.Repository ‑ testReplaceTopics
tests.Repository.Repository ‑ testRepoGetSecretAssertion
tests.Repository.Repository ‑ testRepoSecrets
tests.Repository.Repository ‑ testRepoVariable
tests.Repository.Repository ‑ testRepoVariables
tests.Repository.Repository ‑ testStatisticsCodeFrequency
tests.Repository.Repository ‑ testStatisticsCommitActivity
tests.Repository.Repository ‑ testStatisticsContributors
tests.Repository.Repository ‑ testStatisticsParticipation
tests.Repository.Repository ‑ testStatisticsPunchCard
tests.Repository.Repository ‑ testSubscribePubSubHubbub
tests.Repository.Repository ‑ testTransferOwnership
tests.Repository.Repository ‑ testTransferOwnershipInvalidOwner
tests.Repository.Repository ‑ testUnsubscribePubSubHubbub
tests.Repository.Repository ‑ testUpdateCustomProperties
tests.Repository.Repository ‑ testUpdateFile
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testAddVulnerability
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testAttributes
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testCreateRepositoryAdvisory
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testGetAdvisories
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testOfferCredit
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testOfferCredits
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testRemoveCredit
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testRepositoryWithNoAdvisories
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testUpdateRepositoryAdvisory
tests.RepositoryAdvisory.RepositoryAdvisory ‑ testUpdateSingleFieldDoesNotRemoveOtherFields
tests.RepositoryDiscussion.RepositoryDiscussion ‑ testAddAndDeleteComment
tests.RepositoryDiscussion.RepositoryDiscussion ‑ testAttributes
tests.RepositoryDiscussion.RepositoryDiscussion ‑ testGetComments
tests.RepositoryDiscussion.RepositoryDiscussion ‑ testGetCommentsWithoutNodeId
tests.RepositoryKey.RepositoryKey ‑ testAttributes
tests.RepositoryKey.RepositoryKey ‑ testDelete
tests.RepositoryKey.RepositoryKey ‑ testYetUnusedKey
tests.Requester.Requester ‑ testAddParametersToUrl
tests.Requester.Requester ‑ testAssertUrlAllowed
tests.Requester.Requester ‑ testBaseUrlHostRedirection
tests.Requester.Requester ‑ testBaseUrlPortRedirection
tests.Requester.Requester ‑ testBaseUrlPrefixRedirection
tests.Requester.Requester ‑ testBaseUrlSchemeRedirection
tests.Requester.Requester ‑ testCloseGithub
tests.Requester.Requester ‑ testCloseGithubIntegration
tests.Requester.Requester ‑ testGetParametersOfUrl
tests.Requester.Requester ‑ testHostnameHasDomain
tests.Requester.Requester ‑ testIsPrimaryRateLimitError
tests.Requester.Requester ‑ testIsRateLimitError
tests.Requester.Requester ‑ testIsSecondaryRateLimitError
tests.Requester.Requester ‑ testLoggingRedirection
tests.Requester.Requester ‑ testMakeAbsoluteUrl
tests.Requester.Requester ‑ testRecreation
tests.Requester.Requester ‑ testShouldCreateBadCredentialsException
tests.Requester.Requester ‑ testShouldCreateBadUserAgentException
tests.Requester.Requester ‑ testShouldCreateExceptionWithoutMessage
tests.Requester.Requester ‑ testShouldCreateExceptionWithoutOutput
tests.Requester.Requester ‑ testShouldCreateGithubException
tests.Requester.Requester ‑ testShouldCreateRateLimitExceededException
tests.Requester.Requester ‑ testShouldCreateTwoFactorException
tests.Requester.Requester ‑ testShouldCreateUnknownObjectException
tests.Requester.Requester ‑ testShouldCreateUnknownObjectException2
tests.Requester.Requester ‑ testShouldCreateUnknownObjectException3
tests.Requester.Requester ‑ testWithAuth
tests.Requester.RequesterThrottled ‑ testShouldDeferRequests
tests.Requester.RequesterThrottled ‑ testShouldDeferWrites
tests.Requester.RequesterUnThrottled ‑ testShouldNotDeferRequests
tests.RequiredPullRequestReviews.RequiredPullRequestReviews ‑ testAttributes
tests.RequiredPullRequestReviews.RequiredPullRequestReviews ‑ testOrganizationOwnedTeam
tests.RequiredStatusChecks.RequiredStatusChecks ‑ testAttributes
tests.Retry.Retry ‑ testRaisesRetryErrorAfterMaxRetries
tests.Retry.Retry ‑ testReturnsRepoAfter1Retry
tests.Retry.Retry ‑ testReturnsRepoAfter3Retries
tests.Retry.Retry ‑ testReturnsRepoAfterSettingRetryHttp
tests.Retry.Retry ‑ testShouldNotRetryWhenStatusNotOnList
tests.Search.Search ‑ testGetPageOnSearchUsers
tests.Search.Search ‑ testPaginateSearchTopics
tests.Search.Search ‑ testPaginateSearchUsers
tests.Search.Search ‑ testSearchCode
tests.Search.Search ‑ testSearchCommits
tests.Search.Search ‑ testSearchCommitsOrder
tests.Search.Search ‑ testSearchHighlightingCode
tests.Search.Search ‑ testSearchIssues
tests.Search.Search ‑ testSearchRepos
tests.Search.Search ‑ testSearchReposWithNoResults
tests.Search.Search ‑ testSearchTopics
tests.Search.Search ‑ testSearchUsers
tests.Search.Search ‑ testUrlquotingOfQualifiers
tests.Search.Search ‑ testUrlquotingOfQuery
tests.SecurityAndAnalysis.SecurityAndAnalysis ‑ testAttributes
tests.SecurityAndAnalysis.SecurityAndAnalysis ‑ testRepresentation
tests.SelfHostedActionsRunner.SelfHostedActionsRunner ‑ testAttributes
tests.SourceImport.SourceImport ‑ testAttributes
tests.SourceImport.SourceImport ‑ testUpdate
tests.SubIssue.SubIssue ‑ testAddSubIssue
tests.SubIssue.SubIssue ‑ testListSubIssues
tests.SubIssue.SubIssue ‑ testPrioritizeSubIssue
tests.SubIssue.SubIssue ‑ testRemoveSubIssue
tests.SubIssueSummary.SubIssueSummary ‑ testAttributes
tests.Tag.Tag ‑ testAttributes
tests.Team.Team ‑ testAttributes
tests.Team.Team ‑ testDelete
tests.Team.Team ‑ testDiscussions
tests.Team.Team ‑ testEditWithAllArguments
tests.Team.Team ‑ testEditWithoutArguments
tests.Team.Team ‑ testGetTeams
tests.Team.Team ‑ testMembers
tests.Team.Team ‑ testRepoPermission
tests.Team.Team ‑ testRepos
tests.Team.Team ‑ testReposStr
tests.Team.Team ‑ testTeamMembership
tests.Team.Team ‑ testUpdateTeamRepository
tests.Topic.Topic ‑ testAttributes
tests.Topic.Topic ‑ testNamesFromSearchResults
tests.Traffic.Traffic ‑ testGetClones
tests.Traffic.Traffic ‑ testGetPaths
tests.Traffic.Traffic ‑ testGetReferrers
tests.Traffic.Traffic ‑ testGetViews
tests.UserKey.UserKey ‑ testAttributes
tests.UserKey.UserKey ‑ testDelete
tests.Workflow.Workflow ‑ testAttributes
tests.Workflow.Workflow ‑ testCreateDispatchForNonTriggerEnabled
tests.Workflow.Workflow ‑ testCreateDispatchWithBranch
tests.Workflow.Workflow ‑ testCreateDispatchWithString
tests.Workflow.Workflow ‑ testCreateDispatchWithTag
tests.Workflow.Workflow ‑ testDisable
tests.Workflow.Workflow ‑ testDisabledWhenAlreadyDisabled
tests.Workflow.Workflow ‑ testEnable
tests.Workflow.Workflow ‑ testEnableWhenAlreadyEnabled
tests.Workflow.Workflow ‑ testGetRunsWithCreated
tests.Workflow.Workflow ‑ testGetRunsWithHeadSha
tests.Workflow.Workflow ‑ testGetRunsWithNoArguments
tests.Workflow.Workflow ‑ testGetRunsWithObjects
tests.Workflow.Workflow ‑ testGetRunsWithStrings
tests.WorkflowJob.WorkflowJob ‑ testAttributes
tests.WorkflowRun.WorkflowRun ‑ testAttributes
tests.WorkflowRun.WorkflowRun ‑ test_cancel
tests.WorkflowRun.WorkflowRun ‑ test_delete
tests.WorkflowRun.WorkflowRun ‑ test_jobs
tests.WorkflowRun.WorkflowRun ‑ test_rerun
tests.WorkflowRun.WorkflowRun ‑ test_rerun_failed_jobs
tests.WorkflowRun.WorkflowRun ‑ test_rerun_with_successful_run
tests.WorkflowRun.WorkflowRun ‑ test_timing
tests.WorkflowRun.WorkflowRun ‑ test_timing_no_run_duration