mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
23 lines
531 B
YAML
23 lines
531 B
YAML
language: python
|
|
sudo: false
|
|
python:
|
|
- "3.4"
|
|
install:
|
|
- pip install -U pip wheel setuptools
|
|
- 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
|