From 9521bf8d4fd769712702169ef1ea4ee6296d1ca8 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Tue, 16 Jan 2018 15:20:15 +0100 Subject: Separate contracts tests from others --- .circleci/config.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml index 0416fae84..47cf0af16 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,7 +40,7 @@ jobs: command: npm run testrpc -- --db testrpc_snapshot background: true - run: yarn lerna:run --scope 0x.js test:circleci - test-rest: + test-contracts: docker: - image: circleci/node:6.12 working_directory: ~/repo @@ -52,7 +52,16 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --ignore 0x.js test:circleci + - run: yarn lerna:run --scope contracts test:circleci + test-rest: + docker: + - image: circleci/node:6.12 + working_directory: ~/repo + steps: + - restore_cache: + keys: + - repo-{{ .Environment.CIRCLE_SHA1 }} + - run: yarn lerna:run --ignore contracts,0x.js test:circleci lint: working_directory: ~/repo docker: @@ -79,6 +88,9 @@ workflows: - test-0xjs: requires: - build + - test-contracts: + requires: + - build - test-rest: requires: - build -- cgit v1.2.3