wagtail/.drone.yml

44 wiersze
1.0 KiB
YAML
Czysty Zwykły widok Historia

build:
2016-01-04 10:28:22 +00:00
flake8:
image: python:3.5
2016-01-04 10:28:22 +00:00
commands:
- XDG_CACHE_HOME=/drone/pip-cache pip install flake8
2016-01-04 10:28:22 +00:00
- flake8 wagtail
2016-02-26 11:58:01 +00:00
isort:
image: python:3.5
commands:
- XDG_CACHE_HOME=/drone/pip-cache pip install wheel
2016-06-22 15:18:23 +00:00
- XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing,docs]
2016-02-26 11:58:01 +00:00
- isort --check-only --diff --recursive wagtail
js:
image: node:4.2.4
2016-01-04 10:28:22 +00:00
commands:
- npm install --quiet
- npm run lint
- npm run test:unit
2016-01-04 10:28:22 +00:00
scss-lint:
image: torchbox/scss-lint
2016-01-04 10:28:22 +00:00
commands:
- scss-lint
2016-01-27 12:14:40 +00:00
unittest:
image: python:3.5
commands:
- XDG_CACHE_HOME=/drone/pip-cache pip install wheel
- XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing,docs]
2016-01-27 12:14:40 +00:00
- python runtests.py
cache:
mount:
- node_modules
2016-01-27 12:14:40 +00:00
- /drone/pip-cache
2016-02-10 20:27:44 +00:00
notify:
slack:
webhook_url: https://hooks.slack.com/services/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
channel: builds
username: drone
when:
success: true
failure: true
change: true