forked from jaredledvina/sensu-go-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
40 lines (38 loc) · 779 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
30
31
32
33
34
35
36
37
38
39
40
---
group: trusty
language: python
python: "2.7"
env:
- SCENARIO=debian
- SCENARIO=ubuntu
- SCENARIO=centos
- SCENARIO=fedora
- SCENARIO=amazonlinux
matrix:
fast_finish: true
allow_failures:
- env: SCENARIO=debian # Unsupported, no Sensu Go packages
services: docker
addons:
apt:
packages:
- docker-ce
cache:
pip: true
directories:
- ~/.cache/pipenv
install:
- pip install pipenv
- pipenv install --two --dev
- gem install rubocop
script:
- pipenv run molecule test --scenario-name $SCENARIO --driver-name docker --destroy always
notifications:
webhooks:
urls:
- https://galaxy.ansible.com/api/v1/notifications/
on_success: always
on_failure: never
on_start: never
on_cancel: never
on_error: never