-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.travis.yml
More file actions
30 lines (25 loc) · 765 Bytes
/
.travis.yml
File metadata and controls
30 lines (25 loc) · 765 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
# Based on http://conda.pydata.org/docs/travis.html
language: python
sudo: false # use container based build
notifications:
email: false
python:
- 3.6
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls true
- conda update -q conda
- conda info -a
install:
- conda env create -n test_env --file ci/requirements-py36.yml
- source activate test_env
- conda list
- pip install --no-deps -e .
- python setup.py install
script:
- py.test cfanalytics --cov=cfanalytics
after_success:
- coveralls