From eaed2f339ffde344af0270e13528ec712c9cb692 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 7 Dec 2018 13:58:59 +0000 Subject: [PATCH] Install virtualenv --- .circleci/config.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 421ae2f..2f6c76d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,6 +7,7 @@ jobs: working_directory: ~/ipc_unix steps: - checkout - - run: pip install -e . - - run: pip install -r dev-requirements.txt - - run: python setup.py test + - run: python -m venv env + - run: env/bin/pip install -e . + - run: env/bin/pip install -r dev-requirements.txt + - run: env/bin/python setup.py test