Skip to content
Snippets Groups Projects
tox.ini 336 B
Newer Older
[tox]
envlist = py27,py3,flake8

[testenv]
deps =
  pytest
commands =
  {envpython} -m pytest {posargs:test}

[pytest]
python_files = *test_*.py
testpaths = test
addopts = -r fEs

[testenv:flake8]
basepython = python3
skip_install = true
deps =
  flake8
commands = flake8

[flake8]
max-line-length=120
exclude = test/data/*,.tox/*,doc/*