-
Notifications
You must be signed in to change notification settings - Fork 26
/
.travis.yml
55 lines (47 loc) · 1.14 KB
/
.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
46
47
48
49
50
51
52
53
54
55
sudo: required
dist: xenial
language: python
addons:
apt:
packages:
- gfortran
- libblas-dev
- liblapack-dev
- samtools
before_cache: # prevent logs from caching
- rm -f $HOME/.cache/pip/log/debug.log
cache:
- ccache
- pip
install:
- pip install cython tox
# install bedtools
- wget https://github.com/arq5x/bedtools2/releases/download/v2.27.1/bedtools-2.27.1.tar.gz
- tar -zxvf bedtools-2.27.1.tar.gz
- pushd bedtools2 && make && popd
- export PATH=$PATH:$PWD/bedtools2/bin/
# install STAR
- wget https://github.com/alexdobin/STAR/archive/2.6.1a.tar.gz
- tar -xzf 2.6.1a.tar.gz
- export PATH=$PATH:$PWD/STAR-2.6.1a/bin/Linux_x86_64/
matrix:
include:
- env: TOX_ENV=py35
python: "3.5"
- env: TOX_ENV=py36
python: "3.6"
- env: TOX_ENV=py37
python: "3.7"
- env: TOX_ENV=linters
python: "3.7"
- env: TOX_ENV=docs
python: "3.7"
- env: TOX_ENV=packaging
python: "3.7"
script:
- tox -e $TOX_ENV
after_success:
- pip install codecov
- codecov -e TOX_ENV
notifications:
email: false