aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml23
1 files changed, 0 insertions, 23 deletions
diff --git a/circle.yml b/circle.yml
deleted file mode 100644
index 3dc00bd03..000000000
--- a/circle.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-machine:
- node:
- version: 6.5.0
- environment:
- CONTRACTS_COMMIT_HASH: '78fe8dd'
- PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
-
-dependencies:
- override:
- - yarn
- cache_directories:
- - ~/.cache/yarn
-
-test:
- override:
- - wget https://s3.amazonaws.com/testrpc-shapshots/${CONTRACTS_COMMIT_HASH}.zip
- - unzip ${CONTRACTS_COMMIT_HASH}.zip -d testrpc_snapshot
- - npm run testrpc -- --db testrpc_snapshot:
- background: true
- - yarn test:coverage
- - yarn report_test_coverage
- - if [ $CIRCLE_BRANCH = "master" ]; then yarn test:umd; fi
- - yarn lint