diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2023-02-18 16:02:07 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2023-02-18 16:02:07 -0600 |
commit | 6c27c6cdb9feff6ded293b3673e8ae66155f6bed (patch) | |
tree | 8d267393edd8a52a0f6ca5961ba7a1cdb381baec /pyproject.toml | |
parent | 48cabe1df739d1452e7ecc5164122a067157b057 (diff) |
modify build config and add more test packages
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml index e74c9ec..30773d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,26 @@ [build-system] -requires = [ - "setuptools>=42", - "wheel" +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", ] -build-backend = "setuptools.build_meta" +env = [ + "PYMDVAR_TEST_1=1" +] + +[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 |