cookiecutter-django/tox.ini

20 lines
438 B
INI
Raw Normal View History

[tox]
skipsdist = true
2019-09-30 03:04:21 +03:00
envlist = py37,flake8,black,black-template
[testenv]
deps = -rrequirements.txt
commands = pytest -m "not flake8" -m "not black" {posargs:./tests}
[testenv:flake8]
deps = -rrequirements.txt
commands = pytest -m flake8 {posargs:./tests}
[testenv:black]
deps = -rrequirements.txt
commands = pytest -m black {posargs:./tests}
[testenv:black-template]
deps = black
commands = black --check hooks tests setup.py docs