Facilite la gestion et la valorisation du bénévolat dans les associations.
https://benevalibre.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
843 B
45 lines
843 B
[tool:pytest] |
|
norecursedirs = node_modules |
|
testpaths = benevalibre |
|
DJANGO_SETTINGS_MODULE = benevalibre.settings.test |
|
|
|
[coverage:run] |
|
branch = True |
|
source = |
|
benevalibre |
|
omit = |
|
benevalibre/*tests*, |
|
benevalibre/*/migrations/*, |
|
benevalibre/settings/*, |
|
benevalibre/wsgi.py |
|
|
|
[coverage:report] |
|
exclude_lines = |
|
pragma: no cover |
|
if settings.DEBUG: |
|
raise NotImplementedError |
|
show_missing = True |
|
|
|
[flake8] |
|
exclude = |
|
.git, |
|
.tox, |
|
venv, |
|
*/migrations/*, |
|
*/static/*, |
|
assets, |
|
build, |
|
dist, |
|
docs, |
|
node_modules |
|
max-line-length = 80 |
|
|
|
[isort] |
|
line_length = 80 |
|
known_first_party = benevalibre |
|
multi_line_output = 3 |
|
default_section = THIRDPARTY |
|
known_django = django |
|
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER |
|
skip_glob = **/migrations/*.py |
|
include_trailing_comma = True
|
|
|