mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-05 17:36:15 +00:00
Baseline tests, basically just parts of utils right now
This commit is contained in:
@ -6,6 +6,19 @@ build-backend = "setuptools.build_meta"
|
||||
line-length = 125
|
||||
skip-string-normalization = true
|
||||
|
||||
[tool.coverage.run]
|
||||
omit = [
|
||||
"discord/__main__.py",
|
||||
"discord/types/*",
|
||||
"*/_types.py",
|
||||
]
|
||||
|
||||
[tool.coverage.report]
|
||||
exclude_lines = [
|
||||
"pragma: no cover",
|
||||
"@overload"
|
||||
]
|
||||
|
||||
[tool.isort]
|
||||
profile = "black"
|
||||
combine_as_imports = true
|
||||
@ -29,3 +42,6 @@ exclude = [
|
||||
]
|
||||
pythonVersion = "3.8"
|
||||
typeCheckingMode = "basic"
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
asyncio_mode = "strict"
|
||||
|
Reference in New Issue
Block a user