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
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
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
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
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
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
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
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
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
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