You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
849 B
34 lines
849 B
build: off |
|
environment: |
|
EXECUTABLE: python.exe |
|
PIP_DIR: Scripts |
|
matrix: |
|
- PYTHON: "C:/vp/pypy2" |
|
EXECUTABLE: bin/pypy.exe |
|
PIP_DIR: bin |
|
VENV: YES |
|
- PYTHON: "C:/Python27-x64" |
|
- PYTHON: "C:/Python27" |
|
- PYTHON: "C:/Python36-x64" |
|
- PYTHON: "C:/Python36" |
|
- PYTHON: "C:/Python35-x64" |
|
- PYTHON: "C:/Python35" |
|
init: |
|
- "ECHO %PYTHON%" |
|
- ps: "ls C:/Python*" |
|
install: |
|
- ps: | |
|
if ($env:PYTHON -eq "c:/vp/pypy2") |
|
{ |
|
winbuild/appveyor_install_pypy.cmd |
|
} |
|
- "%PYTHON%/%EXECUTABLE% -m pip install -U pip setuptools" |
|
- "%PYTHON%/%PIP_DIR%/pip.exe install coverage" |
|
- "%PYTHON%/%PIP_DIR%/pip.exe install nose" |
|
|
|
test_script: |
|
- "%PYTHON%/%PIP_DIR%/coverage.exe run --source=olefile -m nose tests" |
|
|
|
on_success: |
|
- echo Build succesful! |
|
- "%PYTHON%/%PIP_DIR%/coverage.exe report"
|
|
|