summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 3b0018a3fc0eaef7da6de131cebd7986052b65f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[build-system]
requires = ["pbr>=5.7.0", "setuptools>=36.6.0"]
build-backend = "pbr.build"

[tool.pytest.ini_options]
addopts = "--cov-report term-missing --cov=pyssg"
testpaths = [
    "tests",
]
env = [
    "PYMDVAR_TEST_1=1",
    "PYSSG_HOME=/tmp/pyssg"
]

[tool.mypy]
mypy_path = "src"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true