From 40c7cc84b88331b7b26bd1452162d0049140990a Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Fri, 20 Jul 2018 11:47:04 -0700 Subject: [PATCH] Use pip3 instead of 'pip' when unit testing Base system pip in ubuntu does not respond to 'pip3' --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 48aeb95..27157c5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,8 +25,8 @@ jobs: - run: name: install dependencies command: | - pip install -r dev-requirements.txt - pip install -e . + pip3 install -r dev-requirements.txt + pip3 install -e . - save_cache: paths: