From 56751bc80ef0716e3e22ad97abe159d22a301cad Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Tue, 13 Nov 2018 12:44:38 -0800 Subject: [PATCH 1/2] remove forwarded ports from notebook server --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a3e8ec6..dd343c8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,6 @@ jobs: build: docker: - image: circleci/python:3.6.7-node-browsers - ports: 9988:9988 - image: minio/minio:RELEASE.2018-11-06T01-01-02Z command: server /data From 83a3f1ebc52dcb517ad1e8ad7a07ed3ca1054fc4 Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Tue, 13 Nov 2018 12:47:57 -0800 Subject: [PATCH 2/2] include space between run chunks --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index dd343c8..00aab1d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,6 +47,7 @@ jobs: . venv/bin/activate # Package up the package python setup.py sdist bdist_wheel + - run: name: create virtual environment for packaged release command: | @@ -54,6 +55,7 @@ jobs: . venv_packaged_integration/bin/activate pip install --upgrade pip setuptools wheel pip install -U --force-reinstall dist/bookstore*.whl + - run: name: integration tests command: |