forked from ansible/ansible-container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (23 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
language: python
dist: trusty
sudo: required
services:
- docker
before_install:
- sudo apt-add-repository 'deb http://archive.ubuntu.com/ubuntu trusty-backports universe'
- sudo apt-get update -qq
- sudo apt-get install -y shellcheck
- sudo apt-get install -y -o Dpkg::Options::="--force-confold" --force-yes docker-engine=1.11.2-0~trusty
install:
- pip install -r requirements.txt -r test/requirements.txt
script:
- python setup.py develop
- docker version
- docker-compose version
- docker info
- test/run.sh
after_success:
- bash <(curl -s https://codecov.io/bash) -F unit -f test/reports/unit/coverage.xml
- bash <(curl -s https://codecov.io/bash) -F integration -f test/reports/integration/coverage.xml
notifications:
email: false