blob: 89f5094aedac5383d41c25710caa87552a6f913c (
plain) (
tree)
|
|
# Tox configuration file
# Read more under https://tox.readthedocs.org/
[tox]
minversion = 1.8
envlist = py37,py38,flake8
skip_missing_interpreters = True
[testenv]
usedevelop = True
changedir = tests
commands =
py.test {posargs}
deps =
pytest
-r{toxinidir}/requirements.txt
[testenv:flake8]
skip_install = True
changedir = {toxinidir}
deps = flake8
commands = flake8 setup.py git_deps tests
# Options for pytest
[pytest]
addopts = -rsxXf
[testenv:sdist]
usedevelop = False
|