tox.ini 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. [tox]
  2. minversion=2.3.1
  3. envlist =
  4. py{27,35}-{flake8,pylint,unit}
  5. py27-{yamllint,ansible_syntax,generate_validation}
  6. integration
  7. skipsdist=True
  8. skip_missing_interpreters=True
  9. [testenv]
  10. skip_install=True
  11. deps =
  12. -rrequirements.txt
  13. -rtest-requirements.txt
  14. py35-flake8: flake8-bugbear==17.3.0
  15. integration: docker-py==1.10.6
  16. commands =
  17. unit: pip install -e utils
  18. unit: pytest {posargs}
  19. flake8: flake8 {posargs}
  20. pylint: python setup.py lint
  21. yamllint: python setup.py yamllint
  22. generate_validation: python setup.py generate_validation
  23. # TODO(rhcarvalho): check syntax of other important entrypoint playbooks
  24. ansible_syntax: python setup.py ansible_syntax
  25. # ansible 2.2.2+ unfortunately breaks the integration test runner
  26. # because it can no longer set facts on the test docker hosts.
  27. # So for now, install separate ansible version for integration.
  28. # PR that fixes it: https://github.com/ansible/ansible/pull/23599
  29. # Once that PR is available, drop this and use same ansible.
  30. integration: pip install ansible==2.2.1.0