Skip to content

Commit

Permalink
move coverage and zest.releaser config into pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mcflugen committed Jan 8, 2024
1 parent 435f5c5 commit 8af035f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ where = [
"src",
]

[tool.coverage.run]
relative_files = true

[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
Expand Down Expand Up @@ -91,3 +94,7 @@ addopts = [
"--doctest-modules",
"-vvv",
]

[tool.zest-releaser]
tag-format = "v{version}"
python-file-with-version = "src/bmipy/_version.py"
7 changes: 0 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,3 @@ ignore = C901, E203, E266, E501, W503, B905
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9

[zest.releaser]
tag-format = v{version}
python-file-with-version = src/bmipy/_version.py

[coverage:run]
relative_files = True

0 comments on commit 8af035f

Please sign in to comment.