enable pip/pre-commit caching on travis and appveyor
This commit is contained in:
parent
075faa5e2b
commit
130f76f66e
|
@ -77,3 +77,7 @@ notifications:
|
||||||
skip_join: true
|
skip_join: true
|
||||||
email:
|
email:
|
||||||
- pytest-commit@python.org
|
- pytest-commit@python.org
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- $HOME/.cache/pip
|
||||||
|
- $HOME/.cache/pre-commit
|
||||||
|
|
|
@ -42,3 +42,7 @@ build: false # Not a C# project, build stuff at the test step instead.
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- call scripts\call-tox.bat
|
- call scripts\call-tox.bat
|
||||||
|
|
||||||
|
cache:
|
||||||
|
- '%LOCALAPPDATA%\pip\cache'
|
||||||
|
- '%USERPROFILE%\.cache\pre-commit'
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Enable caching for pip/pre-commit in order to reduce build time on travis/appveyor.
|
Loading…
Reference in New Issue