-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.appveyor.yml
More file actions
45 lines (45 loc) · 1.56 KB
/
.appveyor.yml
File metadata and controls
45 lines (45 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: '{branch}-{build}'
build: off
environment:
matrix:
- TOXENV: py310,codecov
TOXPYTHON: C:\Python310-x64\python.exe
PYTHON_HOME: C:\Python310-x64
PYTHON_VERSION: '3.10'
PYTHON_ARCH: '64'
- TOXENV: py311,codecov
TOXPYTHON: C:\Python311-x64\python.exe
PYTHON_HOME: C:\Python311-x64
PYTHON_VERSION: '3.11'
PYTHON_ARCH: '64'
- TOXENV: py312,codecov
TOXPYTHON: C:\Python312-x64\python.exe
PYTHON_HOME: C:\Python312-x64
PYTHON_VERSION: '3.12'
PYTHON_ARCH: '64'
- TOXENV: py313,codecov
TOXPYTHON: C:\Python313-x64\python.exe
PYTHON_HOME: C:\Python313-x64
PYTHON_VERSION: '3.13'
PYTHON_ARCH: '64'
- TOXENV: py314,codecov
TOXPYTHON: C:\Python314-x64\python.exe
PYTHON_HOME: C:\Python314-x64
PYTHON_VERSION: '3.14'
PYTHON_ARCH: '64'
init:
- ps: echo $env:TOXENV
- ps: ls C:\Python*
install:
- '%PYTHON_HOME%\python -mpip install --progress-bar=off tox -rci/requirements.txt'
- '%PYTHON_HOME%\Scripts\virtualenv --version'
- '%PYTHON_HOME%\Scripts\pip --version'
- '%PYTHON_HOME%\Scripts\tox --version'
test_script:
- cmd /E:ON /V:ON /C .\ci\appveyor-with-compiler.cmd %PYTHON_HOME%\Scripts\tox
on_failure:
- ps: dir "env:"
- ps: get-content .tox\*\log\*
### To enable remote debugging uncomment this (also, see: http://www.appveyor.com/docs/how-to/rdp-to-build-worker):
# on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))