mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
27 lines
583 B
INI
27 lines
583 B
INI
[run]
|
|
plugins =
|
|
coverage_conditional_plugin
|
|
|
|
[report]
|
|
exclude_lines =
|
|
pragma: no cover
|
|
def __repr__
|
|
def __str__
|
|
@(typing\.)?overload
|
|
if (typing\.)?TYPE_CHECKING( is True)?:
|
|
@(abc\.)?abstractmethod
|
|
raise NotImplementedError
|
|
warnings\.warn
|
|
\.\.\.
|
|
pass
|
|
if __name__ == .__main__.:
|
|
|
|
[coverage_conditional_plugin]
|
|
rules =
|
|
"sys_platform != 'win32'": py-win32
|
|
"sys_platform != 'linux'": py-linux
|
|
"sys_platform != 'darwin'": py-darwin
|
|
"sys_version_info < (3, 9)": py-gte-39
|
|
"sys_version_info < (3, 11)": py-gte-311
|
|
"sys_version_info >= (3, 11)": py-lt-311
|