17 lines
228 B
INI
17 lines
228 B
INI
[tox]
|
|
envlist = py27, py36, py37, py38, py39
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
pytest-pycodestyle
|
|
commands = pytest --pycodestyle
|
|
|
|
[testenv:py{27}]
|
|
deps = pytest
|
|
commands = pytest
|
|
|
|
[pycodestyle]
|
|
max-line-length = 80
|
|
show-source = True
|