pre-commit/appveyor.yml
alzeih bdcbdc2e37 Fix test error "fatal: empty ident name (for <(null)>) not allowed"
Occurs when tests run with tox not with Travis CI or Appveyor

Changed existing tox setenv statement to use whitespace around `=` as per
http://tox.readthedocs.io/en/latest/example/basic.html#setting-environment-variables
2016-12-04 13:33:41 +13:00

23 lines
443 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:
# Shut up CRLF messages
- git config --global core.safecrlf false
test_script: tox
cache:
- '%LOCALAPPDATA%\pip\cache'
- '%USERPROFILE%\.pre-commit'