diff options
| author | Bob Halley <halley@dnspython.org> | 2020-05-20 07:18:21 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2020-05-20 07:18:21 -0700 |
| commit | 213b4c2a2b840aab46c714eafd091245ee4e24bd (patch) | |
| tree | 809d3e33b2db790d2eda1cab59d07b2b5caac0f8 | |
| parent | afdfbcce7362213d1bb0231ea462a459bef37e8d (diff) | |
| download | dnspython-213b4c2a2b840aab46c714eafd091245ee4e24bd.tar.gz | |
coverage tools
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | pyproject.toml | 1 |
3 files changed, 6 insertions, 0 deletions
@@ -13,3 +13,4 @@ dnspython.egg-info/ .mypy_cache/ .python-version poetry.lock +htmlcov @@ -79,3 +79,7 @@ potype: poflake: poetry run flake8 dns + +pocov: + poetry run coverage run -m pytest + poetry run coverage html diff --git a/pyproject.toml b/pyproject.toml index 732af70..44a1dd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ mypy = "^0.770" pytest = "^5.4.1" flake8 = "^3.7.9" sphinx = "^3.0.0" +coverage = "^5.1" [tool.poetry.extras] doh = ['requests', 'requests-toolbelt'] |
