Skip to content

Commit

Permalink
Move .coveragerc config to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
HexDecimal committed Dec 17, 2024
1 parent 2cc8075 commit ad8fa66
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .coveragerc

This file was deleted.

7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,15 @@ write_to = "delocate/_version.py"
minversion = "6.0"
required_plugins = ["pytest-console-scripts>=1.4.0", "pytest-cov"]
testpaths = ["delocate/"]
addopts = ["--doctest-modules", "--cov=delocate", "--cov-config=.coveragerc"]
addopts = ["--doctest-modules", "--cov=delocate", "--cov-config=pyproject.toml"]
log_file_level = "DEBUG"


[tool.coverage.run]
# Exclude files from coverage
omit = ["*/_version.py", "*/tests/*"]


[tool.mypy]
files = ["*.py", "delocate"]
python_version = "3.9"
Expand Down

0 comments on commit ad8fa66

Please sign in to comment.