forked from scholrly/neo4django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
27 lines (27 loc) · 803 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
language: python
python:
- "2.6"
- "2.7"
before_install:
- export DJANGO_SETTINGS_MODULE="neo4django.tests.test_settings"
- export NEO4J_PORT="7474"
- sudo service neo4j stop || true
- sleep 3
- ./install_local_neo4j.bash $NEO4J_VERSION
- ./lib/neo4j/bin/neo4j start || ( cat ./lib/neo4j/data/log/*.log && exit 1 )
- curl http://localhost:$NEO4J_PORT/db/data/
- curl -X DELETE 'http://localhost:7474/cleandb/supersecretdebugkey!'
install: pip install --use-mirrors -r requirements.txt -r test_requirements.txt
env:
- NEO4J_VERSION="1.8.2"
- NEO4J_VERSION="1.9.4"
- NEO4J_VERSION="2.0.0-M06"
matrix:
allow_failures:
- env: NEO4J_VERSION="2.0.0-M06"
notifications:
email:
on_success: change
on_failure: change
script:
- nosetests --with-regression -r --verbose