summaryrefslogtreecommitdiffstats
path: root/api/setup.cfg
blob: e8a8c72efcae4abf72556105eb0cb54486d48aaa (plain)
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
[aliases]
test=pytest

[tool:pytest]
addopts = --verbose --cov=. --cov-report=xml:test-reports/coverage.xml --junitxml=test-reports/junit.xml
python_files = tests/*.py

[flake8]
max-line-length = 120
ignore = E501,W504,W503
exclude = .svn,CVS,.bzr,.hg,.git,__pycache__,.tox,venv,.eggs

[coverage:run]
omit = 
    tests/*
    .eggs/*
    config.py
    configtest.py
    **/*__init__.py
    venv/*
    front/*

[isort]
line_length=120
force_single_line=false