|
1 | 1 | platform: x64 |
2 | 2 |
|
3 | 3 | environment: |
4 | | - |
5 | 4 | matrix: |
6 | 5 | - PYTHON: "C:\\Python27" |
7 | 6 | PYTHON_VERSION: "2.7.x" |
@@ -42,18 +41,65 @@ environment: |
42 | 41 | - PYTHON: "C:\\Python38-x64" |
43 | 42 | PYTHON_VERSION: "3.8.x" |
44 | 43 | 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 | + |
45 | 93 | init: |
46 | 94 | - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%" |
47 | 95 |
|
48 | 96 | install: |
49 | 97 | - set "PATH=%PYTHON%;%PYTHON%\\Scripts;%PYTHON%\\Tools\\Scripts;%PATH%" |
50 | 98 | - 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 |
53 | 100 |
|
54 | 101 | build: off |
55 | 102 |
|
56 | 103 | test_script: |
57 | 104 | - python setup.py install |
58 | | - - py.test --showlocals --durations=10 -n4 tests |
59 | | - |
| 105 | + - pytest --showlocals --durations=10 -n 4 tests |
0 commit comments