0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 05:02:57 +01:00
wagtail/circle.yml
Thibaud Colas 952e3a8e49 Add a test building front-end assets in CicleCI tests (#3636)
A valuable check for PRs like #3628 touching the tooling.
2017-06-07 12:22:45 +03:00

19 lines
343 B
YAML

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