forked from NationalGenomicsInfrastructure/taca-ngi-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (23 loc) · 746 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
language: python
python:
- "2.7"
- "3.8"
before_install:
- export CHARON_BASE_URL="http://tracking.database.org"
- export CHARON_API_TOKEN="charonapitokengoeshere"
- mkdir /home/travis/.ngipipeline
- "echo foo: bar > /home/travis/.ngipipeline/ngi_config.yaml"
- pip install setuptools --upgrade
- pip install pyexcel==0.5.15
- pip install pyexcel-xlsx==0.5.8
- pip install git+https://github.com/SciLifeLab/flowcell_parser.git@master
- pip install git+https://github.com/SciLifeLab/TACA.git@master
- pip install codecov
install:
- python setup.py install
script:
- cd tests && nosetests --with-coverage -v -s utils deliver
after_success:
- codecov
notifications:
email: false