mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Take advantage of the travis-ci cache feature
This commit is contained in:
parent
7911f4b488
commit
c7eefd48e4
2 changed files with 9 additions and 6 deletions
14
.travis.yml
14
.travis.yml
|
|
@ -5,14 +5,18 @@ env: # These should match the tox env list
|
|||
- TOXENV=py33
|
||||
- TOXENV=py34
|
||||
- TOXENV=pypy
|
||||
install: pip install coveralls tox --use-mirrors
|
||||
install: pip install coveralls tox
|
||||
script: tox
|
||||
# Special snowflake. Our tests depend on making real commits.
|
||||
before_install:
|
||||
- git config --global user.name "Travis CI"
|
||||
- git config --global user.email "user@example.com"
|
||||
# Our tests inspect some of *our* git history
|
||||
- git fetch --unshallow
|
||||
- git config --global user.name "Travis CI"
|
||||
- git config --global user.email "user@example.com"
|
||||
# Our tests inspect some of *our* git history
|
||||
- git fetch --unshallow
|
||||
after_success:
|
||||
- coveralls
|
||||
sudo: false
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.cache/pip
|
||||
- $HOME/.pre-commit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue