1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
# Coverage settings
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
def __str__
def __hash__
if not status:
\spass\s
[coverage:run]
branch = True
omit =
*/apps.py
*/wsgi.py
*/settings.py
*/config.py
*/tests.py
*/manage.py
*/__init__.py
*/tests/*
*/venv/*
*/migrations/*
*/htmlcov/*
*.tox/*
[coverage:html]
title = WimsAPI Coverage
# Tox settings
[tox:tox]
skipsdist = True
distshare = {homedir}/.tox/distshare
envlist = py{35,36,37,38,39}
skip_missing_interpreters = true
indexserver =
pypi = https://pypi.python.org/simple
[testenv]
setenv =
PYTHONPATH = {toxinidir}
commands =
pip install -e .
pycodestyle wimsapi/
coverage run --source wimsapi -m pytest -sv tests
coverage xml
deps =
pytest
coverage
pytest-cov
pycodestyle
####################################
##### PEP 8 & PEP 257 settings #####
####################################
[pycodestyle]
count = True
# https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
ignore = E303,W293,E241,W503,E701,E741
max-line-length = 100
max-doc-length = 100
[tool:pytest]
addopts = -vvl
|