-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
36 lines (36 loc) · 1.61 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
language: python
python:
- '3.6'
branches:
only:
- master
- "/^v.*$/"
install:
- 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 config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- conda env create -f environment.yml
- source activate deepDegron
- pyensembl install --release 75 --species human --custom-mirror https://github.com/openvax/ensembl-data/releases/download/GRCh37.75/
- python setup.py install
- train_cterm_model --help
- train_nterm_model --help
- deepDegron_test --help
- deepDegron_score --help
- deepdegron test --help
- deepdegron score --help
- deepdegron nterm_train --help
- deepdegron cterm_train --help
script: nosetests --nocapture tests/
deploy:
provider: pypi
username: __token__
password:
secure: Ty0YPvOvNUmyzsQbXxL5wMUJjYQ6YC+UQOh6qW3f5qX/zri8l+1L5tp+X8APRpNxR8FLbQ2V1xqDQd6owDhR2Qd2HBGrPQ0EvGW0id2/zx0EfqjGXP7kYtOolroLAIDzG44/q6UFGUyIe+Lkk9zdgMD+OaoosdZA9HxR5pzR8O5DseGXRqax6pKv5fYiUeyof+MX0biFAdyCDARoVDn6pHNBhkW+Xacn4Fmau9K9p2tjTb4ll8Lbu1Airiyv9XoYQc9twK8l4R85gMmEf77W0ZIt5G8bhZ9cwW3eJnEmb/IPUNKSyQz+cL1xUqo5JetNQ/O9E80sZaWYxSdGvJUYHmp99xFmFs/qtxxlDrwgcRyd8DbW1025XEq/zv0JnOfMqtnyHlQX9KY908NddJLiaHx915rcBLzXMNt6jyEAXuwqpJTmFJ10wOJgjEwPejjsBEQiEB/G6JKjAvAjyL6FKbRNcpUfn++/VEwzuH/KmhGAoaE41nzc3kWI3QWjPAcYxoeYuaVp3TbScKqRYMq4ADcWNSr/3DpfSjCOiEwhbSoMj5YgzNUqO9YqDsfcnxA82t3r/g61fA3ToUr0OOomnZumEItw2piRydaV48V8K/xsH3mC4rCwnDkE9UfVenYfUbDZfCP9EDlZ29EkuZkEwCUgH76DLXsgtibpYiU706M=
on:
tags: true
branch: master