27 lines
382 B
INI
27 lines
382 B
INI
[tox]
|
|
envlist=py36,flake8,eslint
|
|
|
|
[tox:travis]
|
|
3.6=py36,flake8,eslint
|
|
|
|
[testenv]
|
|
deps=pipenv
|
|
commands=
|
|
pipenv install --dev
|
|
pipenv run python setup.py test
|
|
|
|
[testenv:flake8]
|
|
deps=pipenv
|
|
commands=
|
|
pipenv install --dev
|
|
pipenv run flake8
|
|
|
|
[testenv:eslint]
|
|
whitelist_externals=eslint
|
|
changedir=app
|
|
commands=eslint src
|
|
|
|
[flake8]
|
|
max-line-length=160
|
|
ignore=E402,E722,E252
|