forked from mitre/tmnt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
51 lines (34 loc) · 1.83 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
language: python
matrix:
include:
- python: 3.7
before_install:
# Here we just install Miniconda, which you shouldn't have to change.
# - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
# - chmod +x miniconda.sh
# - ./miniconda.sh -b
# - export PATH=/home/travis/miniconda/bin:$PATH
# - conda update --yes conda
install:
# We just set up a conda environment with the right Python version. This
# should not need changing.
# - conda create --yes -n docs python=$TRAVIS_PYTHON_VERSION
# - source activate docs
# Below, include the dependencies you want to install with conda, optionally
# specifying versions used in the matrix above. If you split this into
# multiple conda install commands, you should always include numpy=$NUMPY as
# the first package to install (for every conda install command) otherwise
# numpy may be automatically upgraded.
- pip install -r requirements.txt
- pip install -r docs/requirements-docs.txt
script:
- cd docs
- make clean
- make html
- mv build/html ../public
after_success:
- codecov
env:
global:
- GITHUB_REPO: "mitre/tmnt"
- secure: "BRuzokBuT5GufirruUe1KyNwPmOUubjcc61Wc+x+XbICkrVRxBfasJVlb3UgxQ6yWAGXhDIV9v+xj6m+hk9MmIKVRMoc2uiRDD+PMGGhPsYnKTZ1RKAgRV+gdx++HyTY/1cOoSmTMD7ywCW1vUY/Ggutaz340EaVk2HJW03KQ5iO062lJOGJuORjHVQPWtbInEzDdHoFYEo6L/mV+hzzMDhyWoEWgJlYihLsplAaZWVu7TtfxVXvIX4dls12fSZRUklhOwhclJFSjMLY3u/y/OOp/7/wZe9Cfwrhn9OkA7/ZDk8+0iRyd4ujDpSmhs/9tTrsGLEpGuHOY7IMAPhkS65WOtuk0R1pLmltbSxXuX/TDgvoDRmcn638ROBi+BtznqSymBH9oIcF0v4jS8bK+3y9NDjit5vLC/xN6dgAbBNvUxQtnz9kO52E2pwH61PrI4hcl2Unw/yrREU+PCF2VOkCLwgJsDTBrBJZSOngZPxwledKjRZO565o8EtwEvh0lm0QYI5HsEcKEqmjp8Fk4Rk0DOUM/kQPDwA9k1glNGtKltgaP9ZC2idpA9ha4pZ48NF9YUOWbY+DC73a68/QDacSEl/nz+ROorKndE1VU1tVL2m+ND9e40MJFP5bAjMi6MBKR/BIz9tupRfplTZ6NC6PZY6/p2RUgjoli6piIUk="