forked from ksahlin/NGSpeciesID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (32 loc) · 1.04 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
language: python
python:
- "3.6"
before_install:
# Here we just install Miniconda, which you shouldn't have to change.
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda2/bin:$PATH
- conda update --yes conda
# command to install dependencies
install:
- conda create --yes -n NGSpeciesID python=$TRAVIS_PYTHON_VERSION pip
- source activate NGSpeciesID
- pip install NGSpeciesID
- conda install --yes -c conda-forge -c bioconda medaka openblas==0.3.3 spoa racon minimap2
# - pip install coveralls
# os:
# - linux
# - osx
# safelist
branches:
only:
- master
# - develop
# command to run tests
script:
- python NGSpeciesID --help
- python NGSpeciesID --ont --fastq test/sample_h1.fastq --outfolder ~/tmp/sample_h1_medaka --consensus --medaka
- python NGSpeciesID --ont --fastq test/sample_h1.fastq --outfolder ~/tmp/sample_h1_racon --consensus --racon
# after_success:
# - coveralls