forked from biodatasets/mybiocaddie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (30 loc) · 766 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
sudo: true
language: python
python:
- "3.4"
## http://superuser.com/questions/993718/can-i-install-java-8-on-travis-ci-for-a-python-project
addons:
apt:
packages:
- oracle-java8-installer
# other answer:
before_install:
- sudo apt-get update
- sudo apt-get install oracle-java8-installer
- sudo update-java-alternatives -s java-8-oracle
install:
- "pip install pyyaml"
before_script:
- mkdir -p bin
- export PATH=$PATH:$PWD/bin
- wget --no-check-certificate https://raw.githubusercontent.com/cmungall/biocaddie-gym/master/bin/bc-md-processor.py -O bin/bc-md-processor.py
- chmod +x bin/*
# command to run tests
script: make test
#after_success:
# coveralls
# whitelist
branches:
only:
- master
- gh-pages