diff options
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -1,9 +1,6 @@ -[aliases] -test = trial - [pep8] exclude = versioneer.py,_version.py,*.egg,build,dist,docs -ignore = E731 +ignore = E731 E402 [flake8] exclude = versioneer.py,_version.py,*.egg,build,dist,docs @@ -15,3 +12,18 @@ style = pep440 versionfile_source = src/leap/mx/_version.py versionfile_build = leap/mx/_version.py tag_prefix = + +[tool:pytest] +pep8ignore = + * E731 E402 + docs/conf.py ALL + versioneer.py ALL + _version.py ALL + *.egg ALL + *_rc.py ALL + +[coverage:run] +branch = True + +[coverage:html] +directory = doc/cov_html |