24 lines
407 B
YAML
24 lines
407 B
YAML
language: python
|
|
|
|
cache: pip
|
|
|
|
python:
|
|
- "3.4"
|
|
|
|
install:
|
|
- pip install --upgrade setuptools
|
|
- pip install -r src/requirements.txt -r src/requirements/dev.txt
|
|
|
|
before_script:
|
|
- cd src
|
|
|
|
script:
|
|
- flake8 c3nav
|
|
- isort -c -rc .
|
|
- python manage.py collectstatic --noinput
|
|
- python manage.py compress
|
|
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- https://hooks.c3nav.de
|