mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
* Add CheckRun object and stub file * Add list of check runs endpoint for Commit * Add get check run endpoint for Repository * Add CheckRun test file and replay data files * Add CheckRunAnnotation object and stub file * Add create CheckRun API endpoint to Repository * Update and add new tests for CheckRun endpoint:
19 lines
541 B
Python
19 lines
541 B
Python
from typing import Any, Dict
|
|
|
|
from github.GithubObject import NonCompletableGithubObject
|
|
|
|
class CheckRunOutput(NonCompletableGithubObject):
|
|
def __repr__(self) -> str: ...
|
|
def _initAttributes(self) -> None: ...
|
|
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
|
|
@property
|
|
def annotations_count(self) -> int: ...
|
|
@property
|
|
def annotations_url(self) -> str: ...
|
|
@property
|
|
def summary(self) -> str: ...
|
|
@property
|
|
def text(self) -> str: ...
|
|
@property
|
|
def title(self) -> str: ...
|