diff options
-rw-r--r-- | circle.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/circle.yml b/circle.yml index 3db83209d..d56ff21bb 100644 --- a/circle.yml +++ b/circle.yml @@ -2,12 +2,12 @@ machine: node: version: 6.1.0 environment: - CONTRACTS_COMMIT: cd04d7c + CONTRACTS_COMMIT_HASH: cd04d7c test: override: - - wget https://s3.amazonaws.com/testrpc-shapshots/${CONTRACTS_COMMIT}.zip - - unzip ${CONTRACTS_COMMIT}.zip -d testrpc_snapshot + - 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 - npm run test:coverage |