forked from franzinc/agraph-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (44 loc) · 1.33 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
language: python
install:
- pip install -r requirements.txt
script:
- pytest
matrix:
include:
- env: AGRAPH_VERSION=6.6.0
python: 3.7
- env: AGRAPH_VERSION=6.6.0
python: 3.6
- env: AGRAPH_VERSION=6.6.0
python: 3.5
- env: AGRAPH_VERSION=6.5.0
python: 3.7
- env: AGRAPH_VERSION=6.5.0
python: 3.6
- env: AGRAPH_VERSION=6.5.0
python: 3.5
- env: AGRAPH_VERSION=6.4.5
python: 3.6
- env: AGRAPH_VERSION=6.4.5
python: 3.5
- env: AGRAPH_VERSION=6.4.5
python: 2.7
- env: AGRAPH_VERSION=6.3.0
python: 3.6
before_script:
- wget http://franz.com/ftp/pri/acl/ag/ag$AGRAPH_VERSION/linuxamd64.64/agraph-$AGRAPH_VERSION-linuxamd64.64.tar.gz -O /tmp/agraph.tar.gz
- export AGRAPH_USER=test
- export AGRAPH_PASSWORD=xyzzy
- tar -zxf /tmp/agraph.tar.gz
- ./agraph-$AGRAPH_VERSION/install-agraph --no-configure $HOME/agraph
- $HOME/agraph/lib/configure-agraph --non-interactive --super-user $AGRAPH_USER --super-password $AGRAPH_PASSWORD
- $HOME/agraph/bin/agraph-control --config $HOME/agraph/lib/agraph.cfg start
- export AGRAPH_PORT=10035
- export AGRAPH_HOST=127.0.0.1
- export AGRAPH_CATALOG=/
notifications:
email:
recipients:
on_success: change # default: change
on_failure: always # default: always