diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-10-02 21:50:17 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-10-02 21:50:17 +0200 |
commit | 1e6d212d917fc6ae3fb3d8dc5a8d30c9eba36d67 (patch) | |
tree | 0ce26147334a69d52addb30d3c88ae22cc342edd /.circleci | |
parent | 083318d1babfefeb935223a53038a960b82a860c (diff) | |
download | bugzilla-1e6d212d917fc6ae3fb3d8dc5a8d30c9eba36d67.tar.gz bugzilla-1e6d212d917fc6ae3fb3d8dc5a8d30c9eba36d67.tar.xz |
change order of tests slightly
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 14 |
1 files 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: |