blob: e37e2be2b2a4fe7f88f681ee725ff265a321cb47 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
machine:
node:
version: 6.1.0
environment:
CONTRACTS_COMMIT_HASH: 414e997
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
- npm run test:coverage
- npm run report_test_coverage
- if [ $CIRCLE_BRANCH = "master" ]; then npm run test:umd; fi
- npm run lint
|