File: appveyor.yml

package info (click to toggle)
pysdl2 0.9.7%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,824 kB
  • sloc: python: 17,244; makefile: 195; sh: 32
file content (42 lines) | stat: -rw-r--r-- 1,160 bytes parent folder | download
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"