forked from intermine/intermine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (33 loc) · 1010 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
language: python # needed to get access to virtualenv
addons:
postgresql: 9.2 # minimum supported postgres version
env:
global:
- TESTMODEL_URL=http://localhost:8080/intermine-demo
- TESTMODEL_PATH=intermine-demo
matrix:
- TEST_SUITE=webapp # Long tests should be listed first, to make most of
- TEST_SUITE=bio # concurrency
# - TEST_SUITE=bio-webapp : this is not possible until we replace the build script with py
- TEST_SUITE=ws CLIENT=JS
- TEST_SUITE=ws CLIENT=PY
- TEST_SUITE=all
- TEST_SUITE=webtasks
- TEST_SUITE=checkstyle
sudo: false # use container based infrastructure
jdk:
- openjdk7
- openjdk6
before_script:
- ./config/travis/init.sh
before_install:
- "export DISPLAY=:99.0"
- ./config/travis/before-install.sh
script:
- ./config/travis/run.sh
notifications:
irc:
channels:
- "chat.freenode.net#intermine-ci"
on_success: change
on_error: change