8
This repository has been archived on 2023-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cavemanon-wagtail-personali…/tox.ini
2018-12-18 13:30:27 +02:00

27 lines
505 B
INI

[tox]
envlist = py{36}-django{111}-wagtail{20},lint
[testenv]
commands = coverage run --parallel -m pytest {posargs}
extras = test
deps =
django111: django>=1.11,<1.12
wagtail19: wagtail>=2.0,<2.1
[testenv:coverage-report]
basepython = python3.6
deps = coverage
pip_pre = true
skip_install = true
commands =
coverage combine
coverage report
[testenv:lint]
basepython = python3.6
deps = flake8==3.5.0
commands =
flake8 src tests setup.py
isort -q --recursive --diff src/ tests/