File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
environment:
2
2
3
+ global:
4
+ # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
5
+ # /E:ON and /V:ON options are not enabled in the batch script intepreter
6
+ # See: http://stackoverflow.com/a/13751649/163740
7
+ CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\build.cmd"
8
+
3
9
matrix:
4
10
5
11
- PYTHON: "C:\\Python27"
@@ -20,11 +26,11 @@ install:
20
26
build: off
21
27
22
28
test_script:
23
- - "build.cmd %PYTHON%\\ python.exe setup.py build_ext --inplace"
24
- - "build.cmd %PYTHON%\\ python.exe -m nose -v"
29
+ - "%CMD_IN_ENV% python setup.py build_ext --inplace"
30
+ - "%CMD_IN_ENV% python -m nose -v"
25
31
26
32
after_test:
27
- - "build.cmd %PYTHON%\\ python.exe setup.py bdist_wheel"
33
+ - "%CMD_IN_ENV% python setup.py bdist_wheel"
28
34
29
35
artifacts:
30
36
- path: dist\*
You can’t perform that action at this time.
0 commit comments