charms.ceph/tox.ini
Corey Bryant cb8684cb19 Add Python 3 Train unit tests
This is a mechanically generated patch to ensure unit testing is in place
for all of the Tested Runtimes for Train.

See the Train python3-updates goal document for details:
https://governance.openstack.org/tc/goals/train/python3-updates.html

Change-Id: I15fca9607c86fe763b009033a92a357d8e6c895b
Story: #2005924
Task: #34228
2019-07-30 10:13:58 -04:00

43 lines
986 B
INI

[tox]
envlist = pep8,py27,py37
skipsdist = True
skip_missing_interpreters = True
[testenv]
setenv = VIRTUAL_ENV={envdir}
install_command =
pip install {opts} {packages}
commands =
stestr run {posargs}
sitepackages = False
[testenv:py27]
# ceph charms are Python3-only, but py27 unit test target
# is required by OpenStack Governance. Remove this shim as soon as
# permitted. http://governance.openstack.org/reference/cti/python_cti.html
whitelist_externals = true
commands = true
[testenv:py36]
basepython = python3.6
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
[testenv:py37]
basepython = python3.7
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
[testenv:pep8]
basepython = python3
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = flake8 {posargs} ceph unit_tests setup.py
[testenv:venv]
basepython = python3
commands = {posargs}
[flake8]
ignore = E402,E226