mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-13 20:40:08 -06:00
26 lines
545 B
YAML
26 lines
545 B
YAML
environment:
|
|
matrix:
|
|
- TOXENV: py27
|
|
- TOXENV: py35
|
|
|
|
install:
|
|
- "SET PATH=C:\\Python35;C:\\Python35\\Scripts;%PATH%"
|
|
- pip install tox virtualenv --upgrade
|
|
- "mkdir -p C:\\Temp"
|
|
- "SET TMPDIR=C:\\Temp"
|
|
|
|
# Not a C# project
|
|
build: false
|
|
|
|
before_test:
|
|
- git config --global user.name "AppVeyor CI"
|
|
- git config --global user.email "user@example.com"
|
|
# Shut up CRLF messages
|
|
- git config --global core.safecrlf false
|
|
|
|
test_script: tox
|
|
|
|
cache:
|
|
- '%LOCALAPPDATA%\pip\cache'
|
|
- '%USERPROFILE%\.pre-commit'
|