This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
M2OLA/backend/tox.ini

15 lines
323 B
INI

[flake8]
exclude = .git, app/static, app/templates, tox.ini
[tox]
#envlist = py25,py26,py27
skipsdist = True
[testenv]
commands = coverage run --source app/api,app/tools --omit app/api/exampleapi.py manage.py -t runtests
coverage report -m
coverage xml
coverage html
deps=-r{toxinidir}/requirements/test.txt