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