aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-07-05 08:44:32 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-07-05 08:44:32 +0800
commit61a6040e7486f77f27abc388e5e58a7774363b41 (patch)
tree2b49490127d3f84fd5063fb7ba2b5cf591f1eb91 /circle.yml
parent9c4f3b2cbae3c00b3189f3043e50c0caacfd9186 (diff)
parentc81855e1196aef738cb741a5ddeacc347a6a81cb (diff)
downloaddexon-sol-tools-61a6040e7486f77f27abc388e5e58a7774363b41.tar
dexon-sol-tools-61a6040e7486f77f27abc388e5e58a7774363b41.tar.gz
dexon-sol-tools-61a6040e7486f77f27abc388e5e58a7774363b41.tar.bz2
dexon-sol-tools-61a6040e7486f77f27abc388e5e58a7774363b41.tar.lz
dexon-sol-tools-61a6040e7486f77f27abc388e5e58a7774363b41.tar.xz
dexon-sol-tools-61a6040e7486f77f27abc388e5e58a7774363b41.tar.zst
dexon-sol-tools-61a6040e7486f77f27abc388e5e58a7774363b41.zip
Merge branch 'master' into subscribe-token
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/circle.yml b/circle.yml
index 7bb33efed..d56ff21bb 100644
--- a/circle.yml
+++ b/circle.yml
@@ -1,13 +1,15 @@
machine:
node:
version: 6.1.0
+ environment:
+ CONTRACTS_COMMIT_HASH: cd04d7c
test:
override:
- - npm run testrpc:
+ - 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
- - git clone git@github.com:0xProject/contracts.git ../contracts
- - cd ../contracts; git checkout cd04d7c; npm install && npm run migrate
- npm run test:coverage
- npm run report_test_coverage
- npm run test:umd