forked from pywinauto/pywinauto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
64 lines (50 loc) · 1.59 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Based on https://github.com/ogrisel/python-appveyor-demo
# and https://github.com/jjhelmus/appveyor-build-conda-pyart
#
# Hint: before committing any changes in the yaml file verify it in
# the yaml online parser: http://yaml-online-parser.appspot.com/
#
# fetch repository as a zip archive
shallow_clone: true # default is "false"
environment:
matrix:
- PYTHON: "C:\\Python27_32"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
CONDA_PY: "27"
- PYTHON: "C:\\Python34_32"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "32"
CONDA_PY: "34"
- PYTHON: "C:\\Python27_64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
CONDA_PY: "27"
- PYTHON: "C:\\Python34_64"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"
CONDA_PY: "34"
os:
- unstable # Unstable worker image with logged in user, desktop and interactive build agent
install:
# Some listings for debug only
#- ECHO "Filesystem root:"
#- ps: "ls \"C:/\""
#- ECHO "Notepad location "
#- ps: "ls C:\\Windows\\System32\\notepad.exe"
# install the appropriate Miniconda (Py2/Py3, 32/64 bit),
# as well as pywin32, pillow and coverage
- "powershell ./ci/install.ps1"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
build: false # Not a C# project, build stuff at the test step instead.
test_script:
# Build the compiled extension and run the project tests
- "powershell ./ci/runTestsuite.ps1"
after_test:
# Nothing goes here
artifacts:
# Archive the generated coverage report in the ci.appveyor.com build report.
- path: Coverage_report
#on_success:
# - TODO:
#