Repos with recipes to deploy some infrastructure services
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

23 wiersze
419 B

  1. [tox]
  2. minversion = 1.8
  3. envlist = py{27}-ansible{22,23,24,25}
  4. skipsdist = true
  5. [travis:env]
  6. ANSIBLE=
  7. 2.2: ansible22
  8. 2.3: ansible23
  9. 2.4: ansible24
  10. 2.5: ansible25
  11. [testenv]
  12. passenv = *
  13. deps =
  14. -rtest-requirements.txt
  15. ansible22: ansible<2.3
  16. ansible23: ansible<2.4
  17. ansible24: ansible<2.5
  18. ansible25: ansible<2.6
  19. commands =
  20. {posargs:molecule test --all --destroy always}