1[tox]
2envlist=py27,py35,py36,py37,py38
3skipsdist=True
4
5[testenv]
6passenv = LIBARCHIVE
7commands=
8    python -m pytest -Wd -vv --boxed --cov libarchive --cov-report term-missing {toxinidir}/tests {posargs}
9    flake8 {toxinidir}
10deps=
11    flake8
12    pytest
13    pytest-cov
14    pytest-xdist
15    six
16    mock
17