Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,10 @@ commands:
- abort_for_noci
- checkout

- restore_cache: # Download and cache dependencies
keys:
- v1-dependencies-{{ checksum "pyproject.toml" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run:
name: install tox dependencies
command: |
pip install --user --quiet --upgrade pip virtualenv
pip install --user --quiet -r .circleci/circle_requirements.txt

- run:
Expand All @@ -79,13 +74,6 @@ commands:
command:
tox -e cover

- save_cache:
paths:
- ./.tox
- ~/.cache/pip
- ~/.cache/pypoetry
key: v1-dependencies-{{ checksum "pyproject.toml" }}

jobs:
build:
parameters:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exclude =.git,.tox,dist,doc,*/__pycache__/*,*test*.py
[testenv:cover]
whitelist_externals = find
commands_pre =
find . -type f -name "*.pyc" -delete
pip install --upgrade pip
setenv =
REDIS_PORT = 6379
commands =
Expand Down