licensename/tox.ini

23 lines
488 B
INI

[tox]
envlist = py33, py34, py35, py36, flake8
[testenv:flake8]
basepython=python
deps=flake8
commands=flake8 licensename
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps =
-r{toxinidir}/test-requirements.txt
commands =
pip install -U pip
py.test --basetemp={envtmpdir}
; If you want to make tox run the tests with the same versions, create a
; requirements.txt with the pinned versions and uncomment the following lines:
; deps =
; -r{toxinidir}/requirements.txt