Enable codecov (#840)

This commit is contained in:
kiukchung 2023-09-06 02:08:09 +00:00 committed by Francois Chollet
parent 04e3223282
commit cb13b7fcab
3 changed files with 16 additions and 1 deletions

4
.gitignore vendored

@ -16,4 +16,6 @@ dist/**
*.egg-info/*
.vscode
examples/**/*.jpg
.python-version
.python-version
.coverage
coverage.xml

12
codecov.yml Normal file

@ -0,0 +1,12 @@
coverage:
status:
project:
default:
# `auto` compares coverage with the base-commit
target: auto
patch:
default:
target:auto

@ -9,6 +9,7 @@ extend-exclude = """
examples/
)
"""
[tool.isort]
profile = "black"
force_single_line = "True"