From 07abff23748b65dc547c9c5de8debc9d5fdeaff6 Mon Sep 17 00:00:00 2001 From: James Adams Date: Sat, 1 Feb 2020 11:02:20 -0500 Subject: [PATCH] updated the CircleCI config file to move the test dependencies installs into the step before saving the cache #53 --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 588d40f..0ad6948 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,6 +22,11 @@ jobs: python3 -m venv venv . venv/bin/activate pip install -e . + pip install codecov + pip install coverage + pip install opencv-python + pip install pytest + pip install scikit-image - save_cache: paths: @@ -32,11 +37,6 @@ jobs: name: run tests command: | . venv/bin/activate - pip install codecov - pip install coverage - pip install opencv-python - pip install pytest - pip install scikit-image coverage run -m pytest tests codecov