tox.ini 653 B

1234567891011121314151617181920212223242526
  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_INVENTORY = {toxinidir}/test/tox-inventory.txt
  12. ANSIBLE_LOG_PATH=/tmp/tox/ansible/ansible.log
  13. ANSIBLE_LOCAL_TEMP=/tmp/tox/ansible
  14. ANSIBLE_CACHE_PLUGIN_CONNECTION=/tmp/tox/ansible/facts
  15. deps =
  16. -rrequirements.txt
  17. -rtest-requirements.txt
  18. py35-flake8: flake8-bugbear==17.3.0
  19. commands =
  20. flake8: flake8 {posargs}
  21. pylint: python setup.py lint
  22. yamllint: python setup.py yamllint
  23. ansible_syntax: python setup.py ansible_syntax