Fixed CI dependency installation

This commit is contained in:
Raphael Michel
2015-10-18 19:53:31 +02:00
parent f7011abfd4
commit acc41b41e6
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ tests:
- virtualenv-3.4 env - virtualenv-3.4 env
- source env/bin/activate - source env/bin/activate
- cd src - cd src
- XDG_CACHE_HOME=/cache pip3 install -q -r requirements.txt - XDG_CACHE_HOME=/cache pip3 install -q -r requirements.txt -r requirements/dev.txt
- flake8 --ignore=E123,F403,F401,N802,C901,W503 . - flake8 --ignore=E123,F403,F401,N802,C901,W503 .
- isort -c -rc . - isort -c -rc .
- python3 manage.py check - python3 manage.py check

View File

@@ -4,7 +4,7 @@ python:
- "3.4" - "3.4"
install: install:
- pip install -U pip wheel - pip install -U pip wheel
- pip install -q -r src/requirements.txt - pip install -q -r src/requirements.txt -r src/requirements/dev.txt
- npm install -g less@2.5.0 - npm install -g less@2.5.0
before_script: before_script:
- cd src - cd src