]> git.phdru.name Git - cookiecutter.git/blob - project_template/appveyor.yml
CI(appveyor.yml): pip install --upgrade wheel
[cookiecutter.git] / project_template / appveyor.yml
1 # Test on windows
2 # Heavily inspired by Oliver Grisel's appveyor-demo (https://github.com/ogrisel/python-appveyor-demo)
3 version: '{branch}-{build}'
4
5 # Only test master and pull requests; skip tags.
6 # Other branches can allow themselves.
7 branches:
8   only:
9     - master
10 skip_branch_with_pr: false
11 skip_tags: true
12
13 cache:
14   - '%LOCALAPPDATA%\pip\Cache'
15
16 # Match travis
17 clone_depth: 50
18
19 environment:
20   global:
21     # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
22     # /E:ON and /V:ON options are not enabled in the batch script intepreter
23     # See: http://stackoverflow.com/a/13751649/163740
24     CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\run_with_env.cmd"
25
26   matrix:
27     - TOXENV: "py27"
28       PYTHON_VERSION: "2.7"
29       PYTHON_ARCH: "32"
30       PYTHON_HOME: "C:\\Python27"
31     - TOXENV: "py27"
32       PYTHON_VERSION: "2.7"
33       PYTHON_ARCH: "64"
34       PYTHON_HOME: "C:\\Python27-x64"
35     - TOXENV: "py33"
36       PYTHON_VERSION: "3.3"
37       PYTHON_ARCH: "32"
38       PYTHON_HOME: "C:\\Python33"
39     - TOXENV: "py33"
40       PYTHON_VERSION: "3.3"
41       PYTHON_ARCH: "64"
42       PYTHON_HOME: "C:\\Python33-x64"
43     - TOXENV: "py34"
44       PYTHON_VERSION: "3.4"
45       PYTHON_ARCH: "32"
46       PYTHON_HOME: "C:\\Python34"
47     - TOXENV: "py34"
48       PYTHON_VERSION: "3.4"
49       PYTHON_ARCH: "64"
50       PYTHON_HOME: "C:\\Python34-x64"
51     - TOXENV: "py35"
52       PYTHON_VERSION: "3.5"
53       PYTHON_ARCH: "32"
54       PYTHON_HOME: "C:\\Python35"
55     - TOXENV: "py35"
56       PYTHON_VERSION: "3.5"
57       PYTHON_ARCH: "64"
58       PYTHON_HOME: "C:\\Python35-x64"
59     - TOXENV: "py36"
60       PYTHON_VERSION: "3.6"
61       PYTHON_ARCH: "32"
62       PYTHON_HOME: "C:\\Python36"
63     - TOXENV: "py36"
64       PYTHON_VERSION: "3.6"
65       PYTHON_ARCH: "64"
66       PYTHON_HOME: "C:\\Python36-x64"
67
68 install:
69   # Ensure we use the right python version
70   - "SET PATH=%PYTHON_HOME%;%PYTHON_HOME%\\Scripts;%PATH%"
71   - "SET TOXPYTHON=%PYTHON_HOME%\\python.exe"
72   - "python --version"
73   - "python -c \"import struct; print(struct.calcsize('P') * 8)\""
74   - "python -m pip install --upgrade pip setuptools"
75   - "pip install --upgrade tox ppu"
76   - "pip --version"
77
78 # No build step - we don't have C extensions
79 build: false
80
81 test_script:
82   - "%CMD_IN_ENV% tox"
83
84 #after_test:
85 #  # If tests are successful and we've tested a tag, create binary package
86 #  - if "%APPVEYOR_REPO_TAG%" == "true" (
87 #      pip install --upgrade wheel &&
88 #      %CMD_IN_ENV% python setup.py bdist_wheel &&
89 #      ls dist
90 #    )
91 #  - remove-old-files.py -o 180 %LOCALAPPDATA%\\pip\\Cache
92 #
93 #artifacts:
94 #  # Archive the generated packages in the ci.appveyor.com build report
95 #  - path: dist\*
96
97 after_test:
98   - "remove-old-files.py -o 180 %LOCALAPPDATA%\\pip\\Cache"