forked from quamilek/ralph_assets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
35 lines (35 loc) · 1.25 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
sudo: false
language: python
cache:
directories:
- $HOME/virtualenv/
before_cache:
- pip uninstall Django ralph django-bob bob-ajax-selects -y
env:
matrix:
- DJANGO_VERSION=1.4.16
- DJANGO_VERSION=1.6.8
matrix:
fast_finish: true
allow_failures:
- env: DJANGO_VERSION=1.6.8
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install https://github.com/chapmanb/python-graph/releases/download/1.8.2/python-graph-core-1.8.2.tar.gz
- pip install git+https://github.com/zefciu/django-search-forms.git@develop
- pip install git+https://github.com/quamilek/bob-ajax-selects.git@develop
- pip install git+https://github.com/allegro/django-bob.git@develop
- pip install coveralls
- pip install -e . --use-mirrors
- pip install git+https://github.com/allegro/ralph@develop --use-mirrors --allow-all-external --allow-unverified ipaddr --allow-unverified postmarkup --allow-unverified python-graph-core --allow-unverified pysphere
before_install:
- pip install flake8 --use-mirrors
- make flake
before_script:
mysql -e 'CREATE DATABASE ralph CHARACTER SET utf8 COLLATE utf8_general_ci;' -uroot
script:
make test-with-coveralls
after_success:
- coveralls