# Tox (http://tox.testrun.org/) is a tool for running tests # in multiple virtualenvs. This configuration file will run the # test suite on all supported python versions. To use it, "pip install tox" # and then run "tox" from this directory. [tox] envlist = py{26,27,33,34,35,36,lint} [testenv] commands = coverage run --source awslogs -m pytest -sv tests [] awslogs --help coverage report deps = mock>=1.0.0; python_version<='3.3' coverage pytest [testenv:lint] commands = flake8 awslogs deps = flake8==3.0.4 [flake8] max-line-length = 120 max-complexity = 28