forked from airr-community/airr-standards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
62 lines (61 loc) · 1.37 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
branches:
only:
- release-1.3
matrix:
include:
- language: python
python:
- 3.6
install:
- pip install pyyaml pandas xlrd deepdiff jinja2 jsondiff
script:
- tests/check-consistency-miairr.py
- tests/check-consistency-formats.py
- language: python
python:
- 2.7
before_install:
- cd lang/python
install:
- pip install -r requirements.txt
script:
- python setup.py install
- python -m unittest discover
- language: python
python:
- 3.6
before_install:
- cd lang/python
install:
- pip install -r requirements.txt
script:
- python setup.py install
- python -m unittest discover
- language: r
r:
- release
sudo: false
latex: false
cache: packages
addons:
apt:
packages:
- libgit2-dev
- libssl-dev
- libxml2-dev
r_check_args: --as-cran --run-donttest
r_binary_packages:
- devtools
- roxygen2
- testthat
- knitr
- rmarkdown
- readr
- stringi
- yaml
- jsonlite
before_install:
- wget -qO- "https://yihui.org/tinytex/install-bin-unix.sh" | sh
- cd lang/R
before_script:
- R -e 'devtools::document()'