wagtail/.drone.yml

29 wiersze
658 B
YAML
Czysty Zwykły widok Historia

2016-01-04 11:48:03 +00:00
# The scripts for building the base images can be found in scripts/drone-images
2016-01-04 10:28:22 +00:00
build:
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
jscs:
image: node:4.2.4
2016-01-04 10:28:22 +00:00
commands:
- npm install -g jscs@"^1.12.0"
2016-01-04 10:28:22 +00:00
- jscs ./wagtail
scss-lint:
image: wagtail-scss-lint
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