diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-05-25 04:37:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-25 04:37:55 +0800 |
commit | bc550c3265cfcb92785d90c075a120d8c90d15f7 (patch) | |
tree | 72b66e77f572be84a141d0c1269583b99b51534c /.circleci/config.yml | |
parent | b39aa5d359df8ed92a8d576b5532490dc5b19ba1 (diff) | |
parent | 69c1df68c8f77e50e191c386d14c3fb55478d665 (diff) | |
download | dexon-sol-tools-bc550c3265cfcb92785d90c075a120d8c90d15f7.tar dexon-sol-tools-bc550c3265cfcb92785d90c075a120d8c90d15f7.tar.gz dexon-sol-tools-bc550c3265cfcb92785d90c075a120d8c90d15f7.tar.bz2 dexon-sol-tools-bc550c3265cfcb92785d90c075a120d8c90d15f7.tar.lz dexon-sol-tools-bc550c3265cfcb92785d90c075a120d8c90d15f7.tar.xz dexon-sol-tools-bc550c3265cfcb92785d90c075a120d8c90d15f7.tar.zst dexon-sol-tools-bc550c3265cfcb92785d90c075a120d8c90d15f7.zip |
Merge pull request #617 from 0xProject/feature/no-coverage-ci-contracts
Disable contracts coverage on CI
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 58740062a..3cdb906e3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -66,10 +66,6 @@ jobs: command: npm run testrpc -- --db testrpc_snapshot background: true - run: yarn wsrun test:circleci contracts - - save_cache: - key: coverage-contracts-{{ .Environment.CIRCLE_SHA1 }} - paths: - - ~/repo/packages/contracts/coverage/lcov.info test-sol-compiler: docker: - image: circleci/node:6.12 @@ -156,9 +152,6 @@ jobs: - repo-{{ .Environment.CIRCLE_SHA1 }} - restore_cache: keys: - - coverage-contracts-{{ .Environment.CIRCLE_SHA1 }} - - restore_cache: - keys: - coverage-assert-{{ .Environment.CIRCLE_SHA1 }} - restore_cache: keys: @@ -216,4 +209,3 @@ workflows: - test-0xjs - test-sol-compiler - test-rest - - test-contracts |