diff options
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 58740062a..ab42ade09 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: @@ -190,9 +183,9 @@ workflows: main: jobs: - build - - test-installation: - requires: - - build + # - test-installation: + # requires: + # - build - test-0xjs: requires: - build @@ -216,4 +209,3 @@ workflows: - test-0xjs - test-sol-compiler - test-rest - - test-contracts |