-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy path.travis.yml
More file actions
26 lines (26 loc) · 821 Bytes
/
.travis.yml
File metadata and controls
26 lines (26 loc) · 821 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
language: python
python:
- '3.6'
install:
- wget https://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
- conda update -q conda
- conda info -a
- conda create -q -n test-env python=$TRAVIS_PYTHON_VERSION pymc
- source activate test-env
- pip install .
- pip install pytest
script:
- pytest
deploy:
provider: pypi
user: vivarium
password:
secure: NkT+ZXx5s2cZvi7iWJDsqEYnB2+nfY7WTRePjqxsri7lqSxvj/HLD/7Gr1mBgXeW2xBJX+/bew1EtHhwpLNOPAY2qReKtkq+vYUWuP5olE0Ln7IgtfNj3E/VtgP27hQiurlE7GVxErug9TwDfell+Rh8Tdq1TsLS82jo/fdqXHQ=
on:
distributions: sdist bdist_wheel
repo: ihmeuw/dismod_mr
tags: true