-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
40 lines (35 loc) · 981 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
35
36
37
38
39
40
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
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 isoncorrect python=$TRAVIS_PYTHON_VERSION pip
- source activate isoncorrect
- pip install isONcorrect
- conda install --yes -c bioconda spoa
# - pip install coveralls
# os:
# - linux
# - osx
# safelist
branches:
only:
- master
# - develop
# command to run tests
script:
- python isONcorrect --fastq test_data/isoncorrect/0.fastq --outfolder ~/tmp/test/
- python run_isoncorrect --t 3 --fastq_folder test_data/isoncorrect/ --outfolder ~/tmp/test_parallel/
# after_success:
# - coveralls