blob: 161023def3b4e2d60e1269dfba0f5274f576a34e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
language: python
python: "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-apt python-pycurl
install:
- pip install ansible
script:
- "printf '[defaults]\nroles_path = ../' > ansible.cfg"
- ansible-playbook -i tests/inventory --syntax-check tests/test.yml
- ansible-playbook -i tests/inventory --connection=local --sudo -vvvv tests/test.yml
notifications:
email: false
|