22 lines
449 B
YAML
22 lines
449 B
YAML
---
|
|
language: python
|
|
python: "2.7.13"
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
install:
|
|
- pip install ansible==2.4.3.0
|
|
- pip install molecule==1.25.0
|
|
- pip install ansible-lint==3.4.20
|
|
- pip install testinfra==1.10.1
|
|
- pip install pytest==3.3.1
|
|
- pip install py==1.5.2
|
|
- pip install pluggy==0.6.0
|
|
- pip install docker
|
|
script:
|
|
- molecule test --driver docker
|
|
|
|
notifications:
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|