19 lines
388 B
INI
19 lines
388 B
INI
[tox]
|
|
skipsdist = True
|
|
envlist = lint,py3
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
setenv =
|
|
PYTHONPATH={toxinidir}:{toxinidir}/lib
|
|
deps =
|
|
pyyaml
|
|
pytest
|
|
flake8
|
|
ipdb
|
|
git+https://github.com/juju-solutions/charms.unit_test/#egg=charms.unit_test
|
|
commands = pytest --tb native -s {posargs}
|
|
|
|
[testenv:lint]
|
|
commands = flake8 {toxinidir}/lib {toxinidir}/reactive {toxinidir}/tests
|