8000 Windows test fixes and CI with AppVeyor by jtatum · Pull Request #1504 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

Windows test fixes and CI with AppVeyor #1504

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add appveyor config for Windows CI
The only tricky bit of this is renaming python.exe to python2.exe.
This is due to util.try_find_python2_interpreter(), which may well
need work for Windows since the version symlinks don't exist on Windows.
  • Loading branch information
jtatum committed May 7, 2016
commit addd9f4e8573807df2d4b1f767583a2802cae794
19 changes: 19 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
environment:
matrix:
- PYTHON: C:\\Python33
- PYTHON: C:\\Python34
- PYTHON: C:\\Python35
- PYTHON: C:\\Python33-x64
- PYTHON: C:\\Python34-x64
- PYTHON: C:\\Python35-x64
install:
- "git submodule update --init typeshed"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;C:\\Python27;%PATH%"
- "REN C:\\Python27\\python.exe python2.exe"
- "python --version"
- "python2 --version"
build_script:
- "pip install -r test-requirements.txt"
- "python setup.py install"
test_script:
- cmd: python runtests.py -v
0