drf-yasg/tox.ini

22 lines
347 B
INI

[tox]
envlist = py35,py36,py37,flake8
[testenv]
deps=
-rrequirements.txt
-rrequirements_validation.txt
-rrequirements_test.txt
commands=
pytest --cov-append --cov=drf_swagger
[testenv:flake8]
skip_install = true
deps=
flake8
commands=
flake8 drf_swagger testproj
[flake8]
max-line-length = 120
exclude = **/migrations/*