tox.ini 688 B

123456789101112131415161718192021222324252627
  1. [tox]
  2. minversion=2.3.1
  3. envlist =
  4. py{27,35}-{flake8,pylint}
  5. py27-{yamllint,ansible_syntax}
  6. skipsdist=True
  7. skip_missing_interpreters=True
  8. [testenv]
  9. skip_install=True
  10. setenv =
  11. ANSIBLE_CONFIG = ./ansible.cfg
  12. ANSIBLE_INVENTORY = {toxinidir}/test/tox-inventory.txt
  13. ANSIBLE_LOG_PATH=/tmp/tox/ansible/ansible.log
  14. ANSIBLE_LOCAL_TEMP=/tmp/tox/ansible
  15. ANSIBLE_CACHE_PLUGIN_CONNECTION=/tmp/tox/ansible/facts
  16. deps =
  17. -rrequirements.txt
  18. -rtest-requirements.txt
  19. py35-flake8: flake8-bugbear==17.3.0
  20. commands =
  21. flake8: flake8 {posargs}
  22. pylint: python setup.py lint
  23. yamllint: python setup.py yamllint
  24. ansible_syntax: python setup.py ansible_syntax