]> git.madduck.net Git - etc/vim.git/blob - .appveyor.yml

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Test on Python 3.9-dev (#1393)
[etc/vim.git] / .appveyor.yml
1 install:
2   - C:\Python36\python.exe -m pip install mypy
3   - C:\Python36\python.exe -m pip install -e .[d]
4
5 # Not a C# project
6 build: off
7
8 test_script:
9   - C:\Python36\python.exe tests/test_black.py
10   - C:\Python36\python.exe -m mypy black.py blackd.py tests/test_black.py blib2to3
11
12 after_test:
13   - C:\Python36\python.exe -m pip install pyinstaller
14   - "%CMD_IN_ENV% C:\\Python36\\python.exe -m PyInstaller --clean -F --add-data
15     blib2to3/;blib2to3 black.py"
16
17 artifacts:
18   - path: dist/black.exe
19
20 deploy:
21   provider: GitHub
22   description: ""
23   auth_token:
24     secure: uplI9CJ2dTGcEBCbZuIn+Qb4rC38hOoRSH9lcwuGCr5g9fSnhK1MZdNT6Cjf/mFL
25   on:
26     APPVEYOR_REPO_TAG: true