mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-08 00:51:10 +00:00
See https://facebook.github.io/jest/docs/troubleshooting.html#tests-are-extremely-slow-on-docker-and-or-continuous-integration-ci-server for further details.
17 lines
323 B
YAML
17 lines
323 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
|