Add `+x` to scripts; type check tests; add toml

This commit is contained in:
Daniil Fajnberg 2023-03-09 19:22:08 +01:00
parent 295c9ed6c7
commit d8a950948c
Signed by: daniil-berg
GPG Key ID: BE187C50903BEE97
4 changed files with 6 additions and 3 deletions

View File

@ -44,7 +44,7 @@ full = [
dev = [
"black",
"build",
"coverage",
"coverage[toml]",
"flake8",
"mkdocs-material",
"mkdocstrings[python]",
@ -65,7 +65,10 @@ version = {attr = "PACKAGE_NAME_PLACEHOLDER.__version__"}
# Mypy: #
[tool.mypy]
files = "src/"
files = [
"src/",
"tests/",
]
warn_unused_configs = true
strict = true
show_error_codes = true

View File

@ -1,7 +1,7 @@
-r common.txt
black
build
coverage
coverage[toml]
flake8
mkdocs-material
mkdocstrings[python]

0
scripts/lint.sh Normal file → Executable file
View File

0
scripts/test.sh Normal file → Executable file
View File