0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 17:36:49 +01:00
wagtail/circle.yml

22 lines
417 B
YAML
Raw Normal View History

2017-05-18 15:20:46 +02:00
machine:
python:
version: 3.6.1
2017-12-20 15:32:18 +01:00
node:
version: 8.9.3
2017-05-18 15:20:46 +02:00
dependencies:
pre:
- pip install -e .[testing]
test:
override:
- flake8 wagtail
- isort --check-only --diff --recursive wagtail
- npm run lint:js
- npm run lint:css
2017-05-18 15:20:46 +02:00
- python -u runtests.py
- npm run test:unit:coverage -- --runInBand
- npm run dist
post:
- bash <(curl -s https://codecov.io/bash) -F frontend