Browse Source
Move coverage config into pyproject.toml
pull/1157/head
Ross McFarland
2 years ago
No known key found for this signature in database
GPG Key ID: 943B179E15D3B22A
2 changed files with
3 additions and
2 deletions
-
.coveragerc
-
pyproject.toml
|
|
|
@ -1,2 +0,0 @@ |
|
|
|
[run] |
|
|
|
omit = octodns/cmds/* |
|
|
|
@ -3,6 +3,9 @@ line-length=80 |
|
|
|
skip-string-normalization=true |
|
|
|
skip-magic-trailing-comma=true |
|
|
|
|
|
|
|
[tool.coverage.run] |
|
|
|
omit=["octodns/cmds/*"] |
|
|
|
|
|
|
|
[tool.isort] |
|
|
|
profile = "black" |
|
|
|
known_first_party="octodns" |
|
|
|
|