mirror of
https://github.com/gryf/ferrit.git
synced 2026-02-07 16:55:47 +01:00
Python 2.7 is EOL, and 3.8 will be (re) added soon, since it's unavailable on most distributions.
19 lines
241 B
INI
19 lines
241 B
INI
[tox]
|
|
envlist = py36, py37, flake8
|
|
|
|
[travis]
|
|
python =
|
|
3.7: py37
|
|
3.6: py36
|
|
|
|
[testenv:flake8]
|
|
basepython = python
|
|
deps = flake8
|
|
commands = flake8 ferrit
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}
|
|
|
|
commands = python setup.py test
|