From 1e6d212d917fc6ae3fb3d8dc5a8d30c9eba36d67 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Mon, 2 Oct 2017 15:50:17 -0400 Subject: [PATCH] change order of tests slightly --- .circleci/config.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a6339fdbc..a56f41c7e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -160,12 +160,20 @@ workflows: main: jobs: - test_sanity - - test_bmo - - test_webservices - - test_selenium + - test_bmo: + requires: + - test_sanity + - test_webservices: + requires: + - test_sanity + - test_selenium: + requires: + - test_sanity - build: requires: - test_sanity + - test_bmo + - test_webservices filters: branches: only: -- 2.47.3