Vim/appveyor.yml
Philip Mateescu 6b702872e7 Makes all tests pass on Windows (#1939)
* appveyor config v1

* typo

* choco failing - getting more info

* force install?

* ignore dependencies

* Dot at the end makes it more obvious what the whole value is

* reducing verbosity

* fixed read shell command test #1914

special case for win32 + neovim

* forgot to remove .only

* taking care of the '\r' dangling on lines on win32 #1914

* \\n doesn't translate to new-line on Windows. \\r\\n does

fixing failed test 4 of #1914

* prettified the code
2017-08-12 22:38:56 -07:00

16 lines
312 B
YAML

environment:
node_version: "6.11.1"
PATH: c:\tools\neovim\Neovim\bin;$(PATH)
install:
- ps: Install-Product node $env:node_version
- choco install neovim --pre -fy --ignoredependencies
- npm install -g gulp
- npm install
build_script:
- gulp
test_script:
- nvim --version
- npm test --silent