We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83030f5 commit 0236c2fCopy full SHA for 0236c2f
.circleci/config.yml
@@ -18,11 +18,18 @@ test: &test
18
name: install dependencies
19
command: |
20
sudo pip install -r tox-requirements.txt
21
+ - restore_cache:
22
+ keys:
23
+ - tox-env-{{ checksum "test-requirements" }}-{{ checksum "build-requirements.txt" }}
24
+ - tox-env-
25
- run:
26
name: test
27
28
tox -e ${CIRCLE_JOB}
-
29
+ - save_cache:
30
+ key: tox-env-{{ checksum "test-requirements" }}-{{ checksum "build-requirements.txt" }}
31
+ paths:
32
+ - .tox
33
test_pypy: &test_pypy
34
working_directory: ~/bencoder.pyx
35
steps:
0 commit comments