FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
DevOps-Python-tools/.travis.yml at master · vikassrivas28/DevOps-Python-tools · GitHub
vikassrivas28
/
DevOps-Python-tools
Public
forked from
HariSekhon/DevOps-Python-tools
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
DevOps-Python-tools
/
.travis.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
76 lines (62 loc) · 1.57 KB
Breadcrumbs
DevOps-Python-tools
/
.travis.yml
Copy path
File metadata and controls
76 lines (62 loc) · 1.57 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#
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
#
version
:
~> 1.0
#
Mac Python 2.7 not available - see https://travis-ci.org/HariSekhon/pylib/jobs/584226228
#
os:
#
- linux
#
- osx
matrix
:
include
:
-
os
:
linux
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"
#
workaround is to use generic and install to system python
-
os
:
osx
language
:
generic
dist
:
trusty
sudo
:
required
env
:
#
- DEBUG=1
-
DOCKER_COMPOSE_VERSION=1.16.1 PYTHONUNBUFFERED=1
notifications
:
email
:
false
branches
:
only
:
-
master
cache
:
pip
services
:
-
docker
#
avoid package checksum mismatches when installing packages
before_install
:
-
sudo rm -f "${TRAVIS_ROOT}/etc/apt/apt.conf.d/99-travis-apt-proxy"
-
sudo rm -rf "${TRAVIS_ROOT}/var/lib/apt/lists/"*
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
Back
|
FazBrowse Home
|
New Git URL