forked from py-sdl/py-sdl2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
42 lines (39 loc) · 1.13 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
environment:
SDL_VIDEODRIVER: dummy
SDL_AUDIODRIVER: dummy
SDL_RENDER_DRIVER: software
matrix:
- PYTHON: "C:\\Python38"
PYSDL2_DLL_VERSION: 2.0.10
- PYTHON: "C:\\Python38-x64"
PYSDL2_DLL_VERSION: 2.0.10
- PYTHON: "C:\\Python27"
PYSDL2_DLL_VERSION: 2.0.10
- PYTHON: "C:\\Python27-x64"
PYSDL2_DLL_VERSION: 2.0.10
- PYTHON: "C:\\Python38"
PYSDL2_DLL_VERSION: 2.0.9
- PYTHON: "C:\\Python38-x64"
PYSDL2_DLL_VERSION: 2.0.9
- PYTHON: "C:\\Python38"
PYSDL2_DLL_VERSION: 2.0.8
- PYTHON: "C:\\Python38-x64"
PYSDL2_DLL_VERSION: 2.0.8
- PYTHON: "C:\\Python38"
PYSDL2_DLL_VERSION: 2.0.7
- PYTHON: "C:\\Python38-x64"
PYSDL2_DLL_VERSION: 2.0.7
- PYTHON: "C:\\Python38-x64"
PYSDL2_DLL_VERSION: 2.0.6
- PYTHON: "C:\\Python38-x64"
PYSDL2_DLL_VERSION: 2.0.5
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python -m pip install -U pip"
- "python .ci/getsdl2.py"
- "set PYSDL2_DLL_PATH=C:\\projects\\py-sdl2\\dlls"
- "pip install -U numpy pytest"
- "pip install ."
build: off
test_script:
- "python -B -m pytest -vvl -rxXP"