1---
2services: docker
3sudo: required
4language: python
5python:
6  - '2.7'
7
8env:
9  - OPENSHIFT_VERSION=v3.9.0
10  - KUBERNETES_VERSION=v1.9.0
11
12script:
13  # Configure test values
14  - export apb_name=APB_NAME
15
16  # Download test shim.
17  - wget -O ${PWD}/apb-test.sh https://raw.githubusercontent.com/ansibleplaybookbundle/apb-test-shim/master/apb-test.sh
18  - chmod +x ${PWD}/apb-test.sh
19
20  # Run tests.
21  - ${PWD}/apb-test.sh
22
23# Uncomment to allow travis to notify galaxy
24# notifications:
25#  webhooks: https://galaxy.ansible.com/api/v1/notifications/
26