Trying to fix build

This commit is contained in:
Mitsuo Takaki
2019-02-03 23:31:38 -08:00
parent 300ac29a24
commit 200b255e6b

View File

@@ -25,10 +25,10 @@ jobs:
- run: - run:
name: install dependencies name: install dependencies
command: | command: |
sudo pip install pipenv sudo pip install virtualenv
pipenv install virtualenv ~/repo
pipenv install -r dev_requirements.txt source ~/repo/bin/activate
pipenv install pytest pip install -r dev_requirements.txt
- save_cache: - save_cache:
paths: paths:
@@ -38,8 +38,8 @@ jobs:
- run: - run:
name: run tests name: run tests
command: | command: |
. venv/bin/activate . bin/activate
pipenv run "pytest tests" py.test tests
- store_artifacts: - store_artifacts:
path: test-reports path: test-reports