-
Notifications
You must be signed in to change notification settings - Fork 15
/
.travis.yml
29 lines (26 loc) · 967 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
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>=1.6.0
- mv tests/ansible.cfg ./ansible.cfg
- mkdir /home/travis/test_directory
- touch /home/travis/test_directory/test_file
script:
# Check syntax
- ansible-playbook --syntax-check -i tests/inventory tests/test.yml
# First run
- ansible-playbook -i tests/inventory tests/test.yml --connection=local --become
# Second run Idempotence test
- >
ansible-playbook -i tests/inventory tests/test.yml --connection=local --become
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
- sudo /usr/bin/duply /etc/duply/file backup
- rm -r /home/travis/test_directory
- sudo /usr/bin/duply /etc/duply/file restore /home/travis/test_directory
- test -e /home/travis/test_directory/test_file || exit 1