forked from HariSekhon/DevOps-Python-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
56 lines (46 loc) · 1.02 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# vim:ts=2:sts=2:sw=2:et
#
# Author: Hari Sekhon
# Date: 2014-11-29 01:02:47 +0000 (Sat, 29 Nov 2014)
#
# https://github.com/harisekhon/devops-python-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
# to help improve or steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
language: python
python:
# - "2.6"
- "2.7"
# MySQL in lib doesn't build from pip in Python 3
# - "3.2"
# - "3.3"
# - "3.4"
# - "3.5"
# python-krbV fails to compile on PyPy
# - "pypy"
# - "pypy3"
sudo: required
env:
# - DEBUG=1
- DOCKER_COMPOSE_VERSION=1.16.1 PYTHONUNBUFFERED=1
notifications:
email: false
branches:
only:
- master
cache: pip
services:
- docker
install:
- travis_retry make
#- pip install --upgrade ndg-httpsclient
- travis_retry pip uninstall -y certifi && travis_retry pip install certifi==2015.04.28
script:
- travis_retry make test
after_success:
- coveralls