This commit is contained in:
Anthony Miyaguchi 2018-12-19 18:04:14 -08:00 коммит произвёл Anthony Miyaguchi
Родитель d03dbe89d2
Коммит 8a257446f2
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -88,7 +88,7 @@ jobs:
- run: *install_dependencies
- run:
name: run linter
command: TOXENV=flake8 tox
command: tox -e flake8,black
- save_cache: *save_cache_settings

Просмотреть файл

@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist = py27, py36, flake8
envlist = py27, py36, flake8, black
[pytest]
addopts =
@ -23,3 +23,7 @@ deps =
flake8==3.6.0
commands =
flake8 mozetl tests
[testenv:black]
deps = black
commands = black --check mozetl/ tests/