diff --git a/.circleci/config.yml b/.circleci/config.yml index 60d258b..3db7afa 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,12 @@ version: 2 jobs: - docker: - - image: python:3 + build: + docker: + - image: python:3 steps: - checkout - run: coverage run -m pytest - run: coverage report + - run: pip install pytest coverage + - run: pip install -e . + - run: coverage run -m pytest + - run: coverage report