diff --git a/.circleci/config.yml b/.circleci/config.yml index 2ac2417..29ef519 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,5 +9,11 @@ jobs: - checkout - run: command: sudo pip install tox + - restore_cache: + key: tox-{{ checksum "tox.ini" }} + paths: [".tox"] - run: command: tox -e py37,flake8 + - save_cache: + key: tox-{{ checksum "tox.ini" }} + paths: [".tox"]