From 200b255e6b9b45b3ec33c432869a6087f5581a46 Mon Sep 17 00:00:00 2001 From: Mitsuo Takaki Date: Sun, 3 Feb 2019 23:31:38 -0800 Subject: [PATCH] Trying to fix build --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d8def81..c2fe6c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,10 +25,10 @@ jobs: - run: name: install dependencies command: | - sudo pip install pipenv - pipenv install - pipenv install -r dev_requirements.txt - pipenv install pytest + sudo pip install virtualenv + virtualenv ~/repo + source ~/repo/bin/activate + pip install -r dev_requirements.txt - save_cache: paths: @@ -38,8 +38,8 @@ jobs: - run: name: run tests command: | - . venv/bin/activate - pipenv run "pytest tests" + . bin/activate + py.test tests - store_artifacts: path: test-reports