Skip to content
Snippets Groups Projects
Commit 96fe5369 authored by Florent Jaillet's avatar Florent Jaillet
Browse files

Use setup.cfg for coverage configuration

parent 18f7987f
No related branches found
No related tags found
No related merge requests found
Pipeline #1495 passed
[run]
branch = True
source = pyteuf
include = */pyteuf/*
omit =
*/setup.py
*/__init__.py
*/test_*
[report]
exclude_lines =
pragma: no cover
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
if obj is None: return
if verbose > 0:
if self.verbose > 0:
if verbose > 1:
if self.verbose > 1:
pass
def __str__(self):
pyteuf:1.0.0
pyteuf:1.0.1
......@@ -10,4 +10,4 @@ from .tf_transforms import Stft
from .tf_transforms import Istft
__all__ = ['Stft', 'Istft', 'TfData']
__version__ = "1.0.0"
__version__ = "1.0.1"
......@@ -5,3 +5,26 @@ addopts = --verbose
--cov-report=html
--cov=pyteuf
--doctest-modules
[coverage:run]
branch = True
source = pyteuf
include = */pyteuf/*
omit = */tests/*
[coverage:report]
exclude_lines =
pragma: no cover
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
if obj is None: return
if verbose > 0:
if self.verbose > 0:
if verbose > 1:
if self.verbose > 1:
pass
def __str__(self):
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment