Skip to content

Commit

Permalink
move coverage config to pyproject.toml, remove outdated Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lociii committed Feb 20, 2025
1 parent fa5b141 commit 9fd56b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 60 deletions.
11 changes: 0 additions & 11 deletions .coveragerc

This file was deleted.

49 changes: 0 additions & 49 deletions Makefile

This file was deleted.

8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,11 @@ commit = true
filename = "django_scrubber/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'

[tool.coverage.run]
branch = true

[tool.coverage.report]
omit = ["*site-packages*", "*tests*", "*.tox*"]
show_missing = true
exclude_lines = ["raise NotImplementedError"]

0 comments on commit 9fd56b1

Please sign in to comment.