mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-18 02:40:40 +00:00
19 lines
420 B
INI
19 lines
420 B
INI
[tox]
|
|
minversion = 3.7.0
|
|
envlist =
|
|
py{35,36,37,38}-ansible{latest,devel}
|
|
|
|
isolated_build = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
passenv = PY_COLORS
|
|
setenv = COVERAGE_FILE={envdir}/.coverage
|
|
deps =
|
|
-rtest-requirements.txt
|
|
ansiblelatest: ansible
|
|
ansibledevel: git+https://github.com/ansible/ansible.git
|
|
commands =
|
|
ansible-later --help
|
|
pytest ansiblelater/tests/ --cov={toxinidir}/ansiblelater/ --no-cov-on-fail
|