Add explicit 'workflows' to CircleCI config

This allows the jobs to actually run in parallel
This commit is contained in:
yuvipanda
2018-07-11 12:21:57 -07:00
parent 4a028e1927
commit e3ae2c3d77

View File

@@ -63,3 +63,11 @@ jobs:
name: check jupyterhub is up name: check jupyterhub is up
command: | command: |
python3 .circleci/integration-test.py run 'curl -L --fail http://127.0.0.1' 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