-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
56 lines (49 loc) · 1.37 KB
/
appveyor.yml
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
46
47
48
49
50
51
52
53
54
55
56
version: 1.0.{build}
image: Visual Studio 2022
environment:
matrix:
- job_name: Python 3.8 x86
PYTHON: "C:\\Python38"
PYTHON_VERSION: 3.8
PYTHON_ARCH: 32
- job_name: Python 3.9 x86
PYTHON: "C:\\Python39"
PYTHON_VERSION: 3.9
PYTHON_ARCH: 32
- job_name: Python 3.10 x86
PYTHON: "C:\\Python310"
PYTHON_VERSION: 3.10
PYTHON_ARCH: 32
- job_name: Python 3.8 x64
PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: 3.8
PYTHON_ARCH: 64
- job_name: Python 3.9 x64
PYTHON: "C:\\Python39-x64"
PYTHON_VERSION: 3.9
PYTHON_ARCH: 64
- job_name: Python 3.10 x64
PYTHON: "C:\\Python310-x64"
PYTHON_VERSION: 3.10
PYTHON_ARCH: 64
init:
- ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%
install:
- appveyor DownloadFile https://testspace-client.s3.amazonaws.com/testspace-windows.zip
- 7z x -y testspace-windows.zip
- testspace config url nepitwin.testspace.com
- cmd: >-
set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
.\keen.bat dependency
build: off
test_script:
- cmd: .\keen.bat test
artifacts:
- path: result/
name: results
after_test:
- testspace result\xunit-result.xml
on_finish:
- ps: >-
$wc = New-Object 'System.Net.WebClient'
$wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\result\xunit-result.xml))