From 087ea1f06824491663df5dc7bc4a44a4b5352d24 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Mon, 13 Nov 2017 18:11:31 -0500 Subject: Standardize around a `test:circleci` command that any sub-package can implement in order to have their tests run on CircleCi --- .circleci/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml index 330420db4..d6d02a4f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,7 +24,6 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run test:coverage - - run: yarn lerna:run report_test_coverage + - run: yarn lerna:run test:circleci - run: if [ $CIRCLE_BRANCH = "development" ]; then yarn lerna:run test:umd; fi - run: yarn lerna:run lint -- cgit v1.2.3 From c7e57a412416daa953ed62150a67a61b0924597e Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Mon, 13 Nov 2017 18:42:02 -0500 Subject: Move conditional running of umd test to 0x.js's package.json --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml index d6d02a4f9..9a39dd33c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,5 +25,4 @@ jobs: command: npm run testrpc -- --db testrpc_snapshot background: true - run: yarn lerna:run test:circleci - - run: if [ $CIRCLE_BRANCH = "development" ]; then yarn lerna:run test:umd; fi - run: yarn lerna:run lint -- cgit v1.2.3