[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
exclude = moto/packages,dist