##// END OF EJS Templates
run appveyor tests
Srinivas Reddy Thatiparthy -
Show More
@@ -1,46 +1,47 b''
1 build: false
1 build: false
2
2
3 environment:
3 environment:
4 matrix:
4 matrix:
5 - PYTHON: "C:\\Python33"
5 - PYTHON: "C:\\Python33"
6 PYTHON_VERSION: "3.3.x"
6 PYTHON_VERSION: "3.3.x"
7 PYTHON_ARCH: "32"
7 PYTHON_ARCH: "32"
8
8
9 - PYTHON: "C:\\Python34"
9 - PYTHON: "C:\\Python34"
10 PYTHON_VERSION: "3.4.x"
10 PYTHON_VERSION: "3.4.x"
11 PYTHON_ARCH: "32"
11 PYTHON_ARCH: "32"
12
12
13 - PYTHON: "C:\\Python35"
13 - PYTHON: "C:\\Python35"
14 PYTHON_VERSION: "3.5.x"
14 PYTHON_VERSION: "3.5.x"
15 PYTHON_ARCH: "32"
15 PYTHON_ARCH: "32"
16
16
17 - PYTHON: "C:\\Python36"
17 - PYTHON: "C:\\Python36"
18 PYTHON_VERSION: "3.6.x"
18 PYTHON_VERSION: "3.6.x"
19 PYTHON_ARCH: "32"
19 PYTHON_ARCH: "32"
20
20
21 - PYTHON: "C:\\Python33-x64"
21 - PYTHON: "C:\\Python33-x64"
22 PYTHON_VERSION: "3.3.x"
22 PYTHON_VERSION: "3.3.x"
23 PYTHON_ARCH: "64"
23 PYTHON_ARCH: "64"
24
24
25 - PYTHON: "C:\\Python34-x64"
25 - PYTHON: "C:\\Python34-x64"
26 PYTHON_VERSION: "3.4.x"
26 PYTHON_VERSION: "3.4.x"
27 PYTHON_ARCH: "64"
27 PYTHON_ARCH: "64"
28
28
29 - PYTHON: "C:\\Python35-x64"
29 - PYTHON: "C:\\Python35-x64"
30 PYTHON_VERSION: "3.5.x"
30 PYTHON_VERSION: "3.5.x"
31 PYTHON_ARCH: "64"
31 PYTHON_ARCH: "64"
32
32
33 - PYTHON: "C:\\Python36-x64"
33 - PYTHON: "C:\\Python36-x64"
34 PYTHON_VERSION: "3.6.x"
34 PYTHON_VERSION: "3.6.x"
35 PYTHON_ARCH: "64"
35 PYTHON_ARCH: "64"
36
36
37 init:
37 init:
38 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
38 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
39
39
40 install:
40 install:
41 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
41 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
42 - "%CMD_IN_ENV% pip install setuptools>=18.5 --upgrade"
42 - "%CMD_IN_ENV% pip install setuptools>=18.5 --upgrade"
43 - "%CMD_IN_ENV% pip install nose coverage ipython[test] --upgrade"
43 - "%CMD_IN_ENV% pip install nose coverage"
44 - "%CMD_IN_ENV% pip install -r requires.txt"
44 test_script:
45 test_script:
45 - "%CMD_IN_ENV% python -c 'True'"
46 - "%CMD_IN_ENV% nosetests ."
46
47
General Comments 0
You need to be logged in to leave comments. Login now