-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
55 lines (48 loc) · 1.81 KB
/
.travis.yml
File metadata and controls
55 lines (48 loc) · 1.81 KB
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
language: python
sudo: false
env:
global:
- secure: "KxLxbVhjY9WJX5t43yN6OHel6140Wb8ap6yy6Uieys0I4IPUulLIPAE/u7qeu3ObMLytZjASHFoNNFZ28u4O4oYf/IfAwSJdFr3v4fun1HTza4EZrXKBjbtRarzjWlfSRjwv8IbxLDi/aPX7vo2gkTyTrvu1LWWCfvhF2tbNTZVZxP3m7F778oW4EfsJCNnHvyscbsRW8Z+ApGjYjdJa97BUYS7nr3Ju5z0wkc3EmTbu6TDKZjeN5jOcidGulBJWx8UUWShyUwU+lrc2r4oQsca9VkBGaVls1Fc3l8ovrrU4Bd+/x7xYOPYmNhDQ3HPkUbD5PrMjrafKm4tDC+BJACP+WeMrr94BKSlNEdGHWeqgPwNkhWNvWmITowq79WEGcCRhwPV/yLXY2HxeOqrq7PiQ8SHCfUp3TyQ015IY7OAGPJ3wnkKkzxOwYgY7A9rEJGOA6Rwv2Jaae/rVoOKWv+5uIaB2zVeXdplaiL5sEe4rNbFDU5N2znQjhx1TmJqaGRcuSdvJVNUrS8MXPpkkmGgQpe9aTaAauTzHCodBWpuRrTIE5uIfOGBjzwN7WCSJtSXPZ32SM4R09Ar2ZD/0xdjUoCZH9JttTghbX8TF7/QG5GdhaMoqbnmFkVMhNPDg0WG2+YqHN4QFB4jEEZGHILx4Vclqb7X6QyAG289NUkU="
matrix:
- CUTTING_EDGE=true
cache:
directories:
- $HOME/.cache/pip
- $HOME/.cache/matplotlib
services:
- mongodb
addons:
apt:
sources:
- mongodb-3.2-precise
packages:
- mongodb-org-server
python:
- 3.6
before_install:
- "export DISPLAY=:99.0"
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p ~/mc
- export PATH=~/mc/bin:$PATH
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda update conda --yes
- export CONDARC=ci/condarc
install:
- export GIT_FULL_HASH=`git rev-parse HEAD`
- conda create --yes -n testenv --file requirements/run.txt --quiet
- source activate testenv
- python setup.py install
script:
- set -e
- conda install --file requirements/test.txt
- coverage run run_tests.py
- coverage report -m
- codecov
- flake8 sampledb
- conda install --yes --file requirements/doc.txt
- cd docs
- make html
- cd ..
- doctr deploy . --built-docs ./docs/_build/html;