2
0

circle.yml 351 B

12345678910111213141516171819
  1. machine:
  2. python:
  3. version: 3.6.1
  4. node:
  5. version: 8.9.3
  6. dependencies:
  7. pre:
  8. - pip install -e .[testing]
  9. test:
  10. override:
  11. - flake8 wagtail
  12. - isort --check-only --diff --recursive wagtail
  13. - npm run lint:js
  14. - npm run lint:css
  15. - python -u runtests.py
  16. - npm run test:unit:coverage -- --runInBand
  17. - npm run dist