From: Ɓukasz Langa Date: Sat, 21 Apr 2018 22:32:01 +0000 (-0700) Subject: Add AppVeyor for Windows builds X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/b07ca2b7d5d03f5d890c1ce5f19b41065ba815c4?ds=sidebyside Add AppVeyor for Windows builds --- diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..5003ce0 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,10 @@ +install: +- C:\Python36\python.exe -m pip install mypy +- C:\Python36\python.exe -m pip install -e . + +# Not a C# project +build: off + +test_script: +- C:\Python36\python.exe tests/test_black.py +- C:\Python36\python.exe -m mypy black.py tests/test_black.py