From b4c71a6dd2c4585ff07eaf0c27806befc86872ef Mon Sep 17 00:00:00 2001 From: Dexter Chua Date: Thu, 31 Dec 2020 18:09:58 +0800 Subject: [PATCH] CI Don't block tests on lint (#963) Lints can be fixed easily, and this exposes "real" problems sooner. --- .circleci/config.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 59d4e6834..fb1cd90b2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -235,9 +235,6 @@ workflows: jobs: - lint - build-core: - requires: - - lint - - test-python filters: tags: only: /.*/ @@ -286,6 +283,8 @@ workflows: - build-packages - deploy-release: requires: + - lint + - test-python - test-core-firefox - test-packages-firefox - test-core-chrome @@ -298,6 +297,8 @@ workflows: only: /^\d+\.\d+\.\d+$/ - deploy-s3: requires: + - lint + - test-python - test-core-firefox - test-packages-firefox - test-core-chrome