| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | [tox]envlist = py27,py36,py37,pre-commit[testenv]usedevelop=Truewhitelist_externals=mkdirpassenv =    LD_LIBRARY_PATH    DOCKER_HOST    DOCKER_CERT_PATH    DOCKER_TLS_VERIFY    DOCKER_VERSION    SWARM_SKIP_*    SWARM_ASSUME_MULTINODEsetenv =    HOME=/tmpdeps =    -rrequirements.txt    -rrequirements-dev.txtcommands =    mkdir -p .coverage-binfiles    py.test -v \        --cov=compose \        --cov-report html \        --cov-report term \        --cov-config=tox.ini \        {posargs:tests}[testenv:pre-commit]skip_install = Truedeps =    pre-commitcommands =    pre-commit install    pre-commit run --all-files# Coverage configuration[run]branch = Truedata_file = .coverage-binfiles/.coverage[report]show_missing = true[html]directory = coverage-html# end coverage configuration[flake8]max-line-length = 105# Set this high for nowmax-complexity = 11exclude = compose/packages[pytest]addopts = --tb=short -rxs
 |