##// END OF EJS Templates
Merge pull request #10199 from Carreau/no-32-bit...
Thomas Kluyver -
r23237:8869e7f4 merge
parent child Browse files
Show More
@@ -1,51 +1,39 b''
1 1 build: false
2 2 matrix:
3 3 fast_finish: true # immediately finish build once one of the jobs fails.
4 4
5 5 environment:
6 6 matrix:
7 - PYTHON: "C:\\Python33"
8 PYTHON_VERSION: "3.3.x"
9 PYTHON_ARCH: "32"
10
11 - PYTHON: "C:\\Python34"
12 PYTHON_VERSION: "3.4.x"
13 PYTHON_ARCH: "32"
14
15 - PYTHON: "C:\\Python35"
16 PYTHON_VERSION: "3.5.x"
17 PYTHON_ARCH: "32"
18
19 7 - PYTHON: "C:\\Python36"
20 8 PYTHON_VERSION: "3.6.x"
21 9 PYTHON_ARCH: "32"
22 10
23 11 - PYTHON: "C:\\Python33-x64"
24 12 PYTHON_VERSION: "3.3.x"
25 13 PYTHON_ARCH: "64"
26 14
27 15 - PYTHON: "C:\\Python34-x64"
28 16 PYTHON_VERSION: "3.4.x"
29 17 PYTHON_ARCH: "64"
30 18
31 19 - PYTHON: "C:\\Python35-x64"
32 20 PYTHON_VERSION: "3.5.x"
33 21 PYTHON_ARCH: "64"
34 22
35 23 - PYTHON: "C:\\Python36-x64"
36 24 PYTHON_VERSION: "3.6.x"
37 25 PYTHON_ARCH: "64"
38 26
39 27 init:
40 28 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
41 29
42 30 install:
43 31 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
44 32 - "%CMD_IN_ENV% pip install setuptools>=18.5 --upgrade"
45 33 - "%CMD_IN_ENV% pip install nose coverage"
46 34 - "%CMD_IN_ENV% pip install .[test]"
47 35 - "%CMD_IN_ENV% mkdir results"
48 36 - "%CMD_IN_ENV% cd results"
49 37 test_script:
50 38 - "%CMD_IN_ENV% iptest --coverage xml"
51 39
General Comments 0
You need to be logged in to leave comments. Login now