# Tox configuration [tox] # List the environment that will be run by default envlist = flake8, py36 [testenv] commands = python setup.py -q test # Settings specific to the flake8 environment [testenv:flake8] # The command to run: commands = flake8 cloudbender/ tests/ # We only need flake8 when linting, we do not care about the project dependencies deps = flake8 [flake8] show-source = True exclude = .venv,.tox,dist,doc,build,*.egg,.test,system ignore = E501