wagtail/circle.yml

19 wiersze
343 B
YAML
Czysty Zwykły widok Historia

2017-05-18 13:20:46 +00:00
machine:
python:
version: 3.6.1
dependencies:
pre:
- pip install -e .[testing]
- gem install scss-lint
test:
override:
- flake8 wagtail
- isort --check-only --diff --recursive wagtail
- npm run lint
- scss-lint
- python -u runtests.py
- npm run test:unit:coverage -- --runInBand
- npm run build