Skip to content

Commit 810ff51

Browse files
committed
update appveyor to match circleci
1 parent e6453e2 commit 810ff51

File tree

1 file changed

+51
-5
lines changed

1 file changed

+51
-5
lines changed

appveyor.yml

Lines changed: 51 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
platform: x64
22

33
environment:
4-
54
matrix:
65
- PYTHON: "C:\\Python27"
76
PYTHON_VERSION: "2.7.x"
@@ -42,18 +41,65 @@ environment:
4241
- PYTHON: "C:\\Python38-x64"
4342
PYTHON_VERSION: "3.8.x"
4443
PYTHON_ARCH: "64"
44+
45+
- PYTHON: "C:\\Python39"
46+
PYTHON_VERSION: "3.9.x"
47+
PYTHON_ARCH: "32"
48+
49+
- PYTHON: "C:\\Python39-x64"
50+
PYTHON_VERSION: "3.9.x"
51+
PYTHON_ARCH: "64"
52+
53+
- PYTHON: "C:\\Python310"
54+
PYTHON_VERSION: "3.10.x"
55+
PYTHON_ARCH: "32"
56+
57+
- PYTHON: "C:\\Python310-x64"
58+
PYTHON_VERSION: "3.10.x"
59+
PYTHON_ARCH: "64"
60+
61+
- PYTHON: "C:\\Python311"
62+
PYTHON_VERSION: "3.11.x"
63+
PYTHON_ARCH: "32"
64+
65+
- PYTHON: "C:\\Python311-x64"
66+
PYTHON_VERSION: "3.11.x"
67+
PYTHON_ARCH: "64"
68+
69+
- PYTHON: "C:\\Python312"
70+
PYTHON_VERSION: "3.12.x"
71+
PYTHON_ARCH: "32"
72+
73+
- PYTHON: "C:\\Python312-x64"
74+
PYTHON_VERSION: "3.12.x"
75+
PYTHON_ARCH: "64"
76+
77+
- PYTHON: "C:\\Python313"
78+
PYTHON_VERSION: "3.13.x"
79+
PYTHON_ARCH: "32"
80+
81+
- PYTHON: "C:\\Python313-x64"
82+
PYTHON_VERSION: "3.13.x"
83+
PYTHON_ARCH: "64"
84+
85+
- PYTHON: "C:\\Python314"
86+
PYTHON_VERSION: "3.14.x"
87+
PYTHON_ARCH: "32"
88+
89+
- PYTHON: "C:\\Python314-x64"
90+
PYTHON_VERSION: "3.14.x"
91+
PYTHON_ARCH: "64"
92+
4593
init:
4694
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
4795

4896
install:
4997
- set "PATH=%PYTHON%;%PYTHON%\\Scripts;%PYTHON%\\Tools\\Scripts;%PATH%"
5098
- python -m pip install --upgrade pip
51-
- pip install paramiko
52-
- pip install mock pytest pytest-cov pytest-xdist
99+
- pip install paramiko mock pytest pytest-cov pytest-xdist
53100

54101
build: off
55102

56103
test_script:
57104
- python setup.py install
58-
- py.test --showlocals --durations=10 -n4 tests
59-
105+
- pytest --showlocals --durations=10 -n 4 tests

0 commit comments

Comments
 (0)