-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy path.travis.yml
34 lines (28 loc) · 860 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
language: python
sudo: required
python:
- "3.6"
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda-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
- mkdir -p $HOME/tmp
- export TMPDIR=$HOME/tmp
install:
- conda create -q -n testenv --yes python=3.6 numpy scipy pandas cython scikit-learn invoke matplotlib
- source activate testenv
- conda install -c bioconda samtools openssl=1.0 star pysam
- pip install htseq
- pip install taggd
- python setup.py build
- python setup.py install
script:
- python setup.py test
- python -m unittest testrun.py
after_success:
- coveralls
notifications:
email: false