-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathappveyor.yml
More file actions
30 lines (26 loc) · 708 Bytes
/
appveyor.yml
File metadata and controls
30 lines (26 loc) · 708 Bytes
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
image: Visual Studio 2022
build: off
max_jobs: 3
init:
- git config --global core.autocrlf input
shallow_clone: true
environment:
matrix:
- py: Python37
- py: Python37-x64
- py: Python38
- py: Python38-x64
- py: Python39
- py: Python39-x64
- py: Python310
- py: Python310-x64
- py: Python311
- py: Python311-x64
- py: Python312
- py: Python312-x64
test_script:
- C:\%py%\Scripts\pip.exe install --upgrade setuptools
- C:\%py%\python.exe -m pip install .
- C:\%py%\Scripts\pip.exe uninstall comtypes -y
- C:\%py%\python.exe test_pip_install.py
- C:\%py%\python.exe -m unittest discover -v -s ./comtypes/test -t comtypes\test