From e3ae2c3d77d8fd01e8a17e88ed3958bd3d6832fe Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Wed, 11 Jul 2018 12:21:57 -0700 Subject: [PATCH] Add explicit 'workflows' to CircleCI config This allows the jobs to actually run in parallel --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4ce6b44..a201e07 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -63,3 +63,11 @@ jobs: name: check jupyterhub is up command: | python3 .circleci/integration-test.py run 'curl -L --fail http://127.0.0.1' + + +workflows: + version: 2 + build_and_test: + jobs: + - unit-test + - integration-test