From 82eaaabce0f11427cbf26a0304d830831f85950e Mon Sep 17 00:00:00 2001 From: James Adams Date: Sat, 1 Feb 2020 10:54:27 -0500 Subject: [PATCH] updated the CircleCI config file to fix indentation errors #53 --- .circleci/config.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fabd4c1..bd209e8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,28 +17,28 @@ jobs: - v1-dependencies-{{ checksum "requirements.txt" }} - v1-dependencies- - run: - name: install dependencies - command: | - python3 -m venv venv - . venv/bin/activate - pip install -e . + name: install dependencies + command: | + python3 -m venv venv + . venv/bin/activate + pip install -e . - save_cache: - paths: - - ./venv - key: v1-dependencies-{{ checksum "requirements.txt" }} + paths: + - ./venv + key: v1-dependencies-{{ checksum "requirements.txt" }} - run: - 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 + 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 # store artifacts (for example logs, binaries, etc) # to be available in the web app or through the API