diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2023-02-15 22:05:29 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2023-02-15 22:05:29 -0600 |
commit | 30ccf03fa849b5c6b550ab85aabce860a16b16cf (patch) | |
tree | a847fe8767547e91bdd076b01d3b4bb54e13ecbc /pyproject.toml | |
parent | 26dabc676ac74812f2dbcfaf0e2b7c5b21e804c9 (diff) |
add more testing and fix small bugs
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml index e74c9ec..dcaca35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,23 @@ [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=pymdvar" +testpaths = [ + "tests", ] -build-backend = "setuptools.build_meta" + +[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
\ No newline at end of file |