Files
kops-arm64/tox.ini
Henning Jacobs e4d925e101 update dependencies (#185)
* update dependencies

* fix Travis build (NPM cache path)
2018-12-11 19:37:06 +01:00

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