-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
44 lines (37 loc) · 1.03 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
os: linux
dist: trusty
language: python
python:
- 2.7
- 3.6
sudo: required
notifications:
email: false
git:
depth: 99999999
addons:
hostname: drmaa.travis-ci.org
hosts:
- localhost
- localhost.localdomain
- drmaa.travis-ci.org
before_install:
- travis/install_sge.sh
- export SGE_ROOT=/var/lib/gridengine
- export SGE_CELL=default
- export DRMAA_LIBRARY_PATH=/usr/lib/gridengine-drmaa/lib/libdrmaa.so.1.0
- sudo apt-get update -qq
- 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 update -q -y conda
- conda info -a
- pip install -r requirements.txt
- python setup.py install
script:
- python cpo_pipeline/assembly/test/test_parsers.py
- python cpo_pipeline/typing/test/test_parsers.py
- python cpo_pipeline/resistance/test/test_parsers.py
- python cpo_pipeline/tree/test/test_parsers.py
- python cpo_pipeline/plasmids/test/test_parsers.py