-
Notifications
You must be signed in to change notification settings - Fork 39
/
.travis.yml
45 lines (37 loc) · 885 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
dist: trusty
language: python
python: 3.6
matrix:
include:
- os: linux
addons:
apt_packages:
- pandoc
cache: pip
before_install:
- sudo apt-get install python3-pip
- sudo pip3 install requests
install:
- pip install tornado==5.1.1
- pip install lightkurve
- pip install tensorflow
- pip install astropy
- pip install astroquery
- pip install tqdm
- pip install sphinx
- pip install nbsphinx
- pip install cython
- pip install codecov
- pip install coverage
- pip install pytest
- pip install pytest-cov
- pip install beautifulsoup4>=4.6.0
- pip install lxml
- pip install tess-point
- pip install pybind11
- python setup.py install
script:
- if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then source .ci/build-docs.sh; fi
- pytest eleanor/tests/* --cov=eleanor/
after_success:
- codecov