diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index c340dc3378f1db1558da889a525b6e75a6a2fc83..0000000000000000000000000000000000000000 --- a/.coveragerc +++ /dev/null @@ -1,26 +0,0 @@ -[run] -branch = True -source = pyexp -include = */pyexp/* -omit = - */setup.py - */__init__.py - */test_* - */script_for_generate_oar_script.py - -[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): diff --git a/VERSION b/VERSION index 276223699735b2bc688a5a02462de216da7786b6..2f7907b76cbb88e8e4049d25e5528b588a97f26b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -yafe:1.0.1 +yafe:1.0.2 diff --git a/setup.cfg b/setup.cfg index 846c799368e95ab24a4e505813aa0e22dbeccf0d..14a393a956dbfcfb102bee283488da08a3d5101e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,3 +5,26 @@ addopts = --verbose --cov-report=html --cov=yafe --doctest-modules + +[coverage:run] +branch = True +source = yafe +include = */yafe/* +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): diff --git a/yafe/__init__.py b/yafe/__init__.py index 407f2c226ffd8b41eddc009dc0cd31fc6bf230ff..019f8e33bf3ca83e77b761e74c18c7edc33ce266 100644 --- a/yafe/__init__.py +++ b/yafe/__init__.py @@ -48,4 +48,4 @@ from .base import Experiment __all__ = ['Experiment'] -__version__ = "1.0.1" +__version__ = "1.0.2"