forked from tangentlabs/django-oscar-fancypages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
24 lines (23 loc) · 843 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
language: python
python:
- "2.7"
env:
matrix:
- DJANGO_VERSION=">=1.4,<1.5"
OSCAR="django-oscar>=0.5,<0.6"
- DJANGO_VERSION=">=1.4,<1.5"
OSCAR="git+https://github.com/tangentlabs/django-oscar#egg=django-oscar-dev"
- DJANGO_VERSION=">=1.5,<1.6"
OSCAR="django-oscar>=0.5,<0.6"
- DJANGO_VERSION=">=1.5,<1.6"
OSCAR="git+https://github.com/tangentlabs/django-oscar#egg=django-oscar-dev"
install:
- pip install wheel setuptools -U
- pip install Django$DJANGO_VERSION $OSCAR --use-mirrors --use-wheel
- pip install . --use-mirrors --use-wheel
- pip install -r requirements.txt --use-mirrors
- pip install -r requirements_oscar.txt --use-mirrors --use-wheel
script:
- py.test tests --pyargs fancypages -m 'not fp_only' --pep8 --cov oscar_fancypages
after_success:
- coveralls