language: python sudo: false python: - "3.4" install: - pip install -U pip wheel - pip install -q -U -r src/requirements.txt -r src/requirements/dev.txt -r src/requirements/py34.txt - npm install -g less@2.5.0 before_script: - cd src script: - flake8 --ignore=E123,F403,F401,N802,C901,W503,E402 . - isort -c -rc . - python manage.py check - make - make compress - coverage run -m py.test tests after_success: - coveralls cache: directories: - $HOME/.cache/pip