moto/tox.ini
Chih-Hsuan Yen 84fb52d0a2
Fix remaining flake8 issues
Disabling W504 and W605 for now as there are too many instances.
2019-10-27 21:00:01 +08:00

20 lines
399 B
INI

[tox]
envlist = py27, py36, py37
[testenv]
setenv =
BOTO_CONFIG=/dev/null
AWS_SECRET_ACCESS_KEY=foobar_secret
AWS_ACCESS_KEY_ID=foobar_key
AWS_DEFAULT_REGION=us-east-1
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
commands =
{envpython} setup.py test
nosetests {posargs}
[flake8]
ignore = E128,E501,W504,W605
exclude = moto/packages,dist