forked from mrocklin/dask-marathon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
51 lines (39 loc) · 832 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
language: python
dist: trusty
sudo: required
notifications:
email: false
services:
- docker
matrix:
include:
- python: "3.5"
env: OS=ubuntu-14.04
env:
global:
- DOCKER_COMPOSE_VERSION=1.12.0
before_install:
- pwd
# Install docker
- bash ci/scripts/travis_docker_setup.sh
- docker version
- docker-compose version
# Install miniconda and create `adam` environment
- bash ci/scripts/conda_setup.sh
- export PATH="$HOME/miniconda/bin:$PATH"
# Start containers
- export DOCKER_IP=127.0.0.1
- docker-compose up -d
- docker ps -a
- docker images
# Build images
- docker build -t daskos/daskathon .
- docker images
install:
- conda install -y dask distributed bokeh
script:
- which python
- python setup.py test
after_success:
- pip install coveralls
- coveralls