forked from allegro/ralph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
38 lines (34 loc) · 1.16 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
language: python
env:
matrix:
- DJANGO_VERSION=1.4.21 TEST_DATABASE_ENGINE=mysql
- DJANGO_VERSION=1.6.10 TEST_DATABASE_ENGINE=sqlite
matrix:
allow_failures:
- env: DJANGO_VERSION=1.6.10 TEST_DATABASE_ENGINE=sqlite
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install git+https://github.com/allegro/django-bob@develop
- pip install git+https://github.com/quamilek/bob-ajax-selects.git@develop
- pip install git+https://github.com/allegro/ralph_assets.git@develop
- make install
- pip install coveralls
- pip install flake8
- pip install django-auth-ldap==1.1.3
- pip install git+https://github.com/rory/django-template-i18n-lint
# command to run tests, e.g. python setup.py test
script: make test-with-coveralls
before_script:
- make flake
- make check-templates
after_success:
- coveralls
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/837fe61b536818b676ad
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false