forked from BuildACell/txtlsim-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (24 loc) · 793 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
# .travis.yml - Travis CI setup
# RMM, 28 Aug 2018
language: python
python:
- "3.6"
# install required system libraries
before_install:
# use miniconda to install libsbml, to avoid lengthy build from source
- 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 create -q -n test-environment python="$TRAVIS_PYTHON_VERSION" pip coverage nose coveralls
- source activate test-environment
# Install packages
install:
conda install -c SBMLTeam python-libsbml
# command to run tests
script:
- coverage run setup.py test
after_success:
- coveralls