Update dependencies (#163)
* update dependencies * fix kubeconfig loader * use pipenv * add missing pipenv shell * tox-pipenv * pipenv on Travis * add cache files to gitignore
This commit is contained in:
16
tox.ini
16
tox.ini
@@ -1,18 +1,20 @@
|
||||
[tox]
|
||||
envlist=py35,flake8,eslint
|
||||
envlist=py36,flake8,eslint
|
||||
|
||||
[tox:travis]
|
||||
3.5=py35,flake8,eslint
|
||||
3.6=py36,flake8,eslint
|
||||
|
||||
[testenv]
|
||||
deps=pytest
|
||||
deps=pipenv
|
||||
commands=
|
||||
pip install -r requirements.txt
|
||||
python setup.py test
|
||||
pipenv install --dev
|
||||
pipenv run python setup.py test
|
||||
|
||||
[testenv:flake8]
|
||||
deps=flake8
|
||||
commands=python setup.py flake8
|
||||
deps=pipenv
|
||||
commands=
|
||||
pipenv install --dev
|
||||
pipenv run flake8
|
||||
|
||||
[testenv:eslint]
|
||||
whitelist_externals=eslint
|
||||
|
||||
Reference in New Issue
Block a user