Git should ignore any code coverage files.

pull/3016/head
derekpierre 2022-11-16 12:25:50 -05:00
parent 7a389e2c39
commit 81a6e9539b
1 changed files with 5 additions and 1 deletions

6
.gitignore vendored
View File

@ -10,7 +10,6 @@ __pycache__
/MANIFEST
/.tox
/.idea
.coverage
_temp_test_datastore
.mypy_cache
.pytest_cache/
@ -51,3 +50,8 @@ docs/source/contracts_api/
tests/unit/.hypothesis/
.hypothesis/
# Coverage
.coverage
coverage.*
htmlcov/*