-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcircle.yml
More file actions
26 lines (26 loc) · 781 Bytes
/
circle.yml
File metadata and controls
26 lines (26 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
machine:
python:
version: 2.7.3
timezone: America/Los_Angeles
services:
- rabbitmq-server
dependencies:
cache_directories:
- seed/static/vendors/bower_components/fine-uploader
override:
- venv/bin/pip install -r requirements.txt
- venv/bin/pip install https://github.com/skoczen/lettuce/tarball/fork#egg=lettuce-0.2.10.1 --force
- bash bin/install_javascript_dependencies.sh
- npm install -g jshint
test:
pre:
- echo "pre"
override:
- coverage run manage.py test --settings=BE.settings.ci
- coverage report --fail-under=84
- bin/parallel_harvest_tests.sh:
parallel: true
- flake8
- jshint seed/static/seed/js
post:
- echo ""