Baseline tests, basically just parts of utils right now

This commit is contained in:
Devon R
2022-03-01 06:02:36 +00:00
committed by GitHub
parent 3c6279b947
commit 28c7cdca99
5 changed files with 320 additions and 0 deletions

View File

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