Skip to content

Commit

Permalink
Fix py.test command in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Vetter committed Aug 29, 2013
1 parent c21c413 commit ef9f900
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .travis.yml
Expand Up @@ -3,19 +3,20 @@ python:
- "2.7"
env:
matrix:
- DRF_VERSRION=">=2.0,<2.1"
- DRF_VERSRION=">=2.1,<2.2"
- DRF_VERSRION=">=2.2,<2.3"
- DRF_VERSRION=">=2.3,<2.4"
- 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="django-oscar>=0.5,<0.6"
- OSCAR="git@github.com:tangentlabs/django-oscar#egg=django-oscar-dev"
OSCAR="git+https://github.com/tangentlabs/django-oscar#egg=django-oscar-dev"
install:
- pip install Django$DJANGO_VERSION djangorestframework$DRF_VERSION $OSCAR
- pip install Django$DJANGO_VERSION $OSCAR
- pip install . --use-mirrors
- pip install -r requirements.txt --use-mirrors
script:
- py.test --pep8 --cov --pyargs fancypages -m 'not fp_only'
- py.test tests --pyargs fancypages -m 'not fp_only' --pep8 --cov oscar_fancypages
after_success:
- coveralls

0 comments on commit ef9f900

Please sign in to comment.