-
Notifications
You must be signed in to change notification settings - Fork 11
/
.travis.yml
32 lines (25 loc) · 1.08 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
language: python
python:
- "3.6"
notifications:
email: false
install:
- wget http://bit.ly/miniconda -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
- conda config --add channels bioconda
- travis_retry conda create --yes -n TEST python=3.6 $CONDA --file ./requirements/development.txt
- source activate TEST
- conda install --yes -c conda-forge mono
- conda update pymzml
- conda install --yes -c conda-forge brain-isotopic-distribution
- conda install --yes pytest
- wget http://genesis.ugent.be/uvpublicdata/moFF_test/B002417_Ap_22cm_iRT_PRC-Hans_equimolar_100fmol.raw
#before-script:
script:
#- flake8 . --ignore E501 E203
- python moff_all.py --tsv test/B002417_Ap_22cm_iRT_PRC-Hans_equimolar_100fmol.txt --raw_list B002417_Ap_22cm_iRT_PRC-Hans_equimolar_100fmol.raw --xic_length 2 --rt_peak_win 1 --loc_out test/ --tol 4 --mbr off
- python moff_all.py --config_file test/configuration_iRT_test_match.ini
- pytest test/
#- python moff_all.py --help