blob: d1c24e224546a3e5d3e420d3bc01880271fdb6d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
environment:
PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.1"
PYTHON_ARCH: "32"
# set up for nmake:
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
build_script:
- 'nmake'
test_script:
- 'nmake test'
|