Skip to content

Commit

Permalink
Add middlewares to circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbgk committed Mar 16, 2016
1 parent 3f4adec commit 691ba26
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
machine:
services:
- redis
- elasticsearch
dependencies:
cache_directories:
- mongodb-linux-x86_64-3.2.4
pre:
- if [[ ! -d mongodb-linux-x86_64-3.2.4 ]]; then wget http://downloads.mongodb.org/linux/mongodb-linux-x86_64-3.2.4.tgz && tar xvzf mongodb-linux-x86_64-3.2.4.tgz; fi
- sudo /etc/init.d/mongodb stop
- sudo cp mongodb-linux-x86_64-3.2.4/bin/* /usr/bin
- sudo /etc/init.d/mongodb start
override:
- pip install -r requirements/travis.pip
test:
Expand Down

0 comments on commit 691ba26

Please sign in to comment.