forked from thefactory/marathon-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (29 loc) · 696 Bytes
/
.travis.yml
File metadata and controls
32 lines (29 loc) · 696 Bytes
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
env:
- MARATHONVERSION: 1.4.2
- MARATHONVERSION: 1.3.0
- MARATHONVERSION: 1.1.2
- MARATHONVERSION: 0.15.3
- MARATHONVERSION: 0.14.1
- MARATHONVERSION: 0.13.1
- MARATHONVERSION: 0.11.1
- MARATHONVERSION: 0.10.1
language: python
python:
- 2.7
install:
- pip install tox
script:
- make test
- ./itests/install-marathon.sh
- /etc/init.d/zookeeper start
- ./itests/start-marathon.sh &
- make itests
# Work around travis-ci/travis-ci#5227
addons:
hostname: localhost
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++6-4.7-dev
sudo: required # make it explicit: it was by default only because this repo was set up before 2015 (new forks need it)