-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
41 lines (37 loc) · 1.06 KB
/
circle.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# https://circleci.com/gh/Llamatech/review-me
machine:
# hosts:
# review-me.margffoy-tuay.com: 127.0.0.1:3000
environment:
# For Coveralls
COVERALLS_REPO_TOKEN: v09uyZ3UvELCl2JiNfOkYZsq8YoKNYl53
MONGO_URL: mongodb://127.0.0.1:27017
ROOT_URL: http://checklist.margffoy-tuay.com
TEST_BROWSER_DRIVER: phantomjs
services:
- mongod
# python:
# version: 3.6.0
pre:
- meteor || curl https://install.meteor.com | /bin/sh
post:
- meteor --version
dependencies:
cache_directories:
- ".meteor/local/plugin-cache"
override:
- pip install -U pip
- pip install pexpect
- meteor npm install
test:
override:
- echo $METEOR_SETTINGS > settings-development.json
- ./node_modules/.bin/eslint .:
parallel: true
# - meteor test --once --driver-package dispatch:mocha:
# parallel: true
- echo $TEST_BROWSER_DRIVER
- bash runtests.sh:
parallel: true
# - meteor test --once --driver-package dispatch:mocha
- cat .coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true