From 300ac29a24a8b027f2f5f45aa921cc13e686d3ba Mon Sep 17 00:00:00 2001 From: Mitsuo Takaki Date: Sun, 3 Feb 2019 23:27:09 -0800 Subject: [PATCH] Trying to fix build --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5e02bb8..d8def81 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,6 +28,7 @@ jobs: sudo pip install pipenv pipenv install pipenv install -r dev_requirements.txt + pipenv install pytest - save_cache: paths: @@ -38,7 +39,7 @@ jobs: name: run tests command: | . venv/bin/activate - pipenv run "py.test tests" + pipenv run "pytest tests" - store_artifacts: path: test-reports