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