File: appveyor.yml

package info (click to toggle)
python-spdx-tools 0.8.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,084 kB
  • sloc: python: 18,675; xml: 12,553; sh: 46; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 549 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
version: "{build}"
image:
  - Visual Studio 2019
environment:
  matrix:
    - PYTHON_EXE: "C:\\Python37-x64\\python.exe"
    - PYTHON_EXE: "C:\\Python38-x64\\python.exe"
    - PYTHON_EXE: "C:\\Python39-x64\\python.exe"
    - PYTHON_EXE: "C:\\Python310-x64\\python.exe"

install:
  - "%PYTHON_EXE% --version"
  - "%PYTHON_EXE% -m pip install --upgrade pip"
  - "%PYTHON_EXE% -m pip install --upgrade setuptools setuptools_scm wheel build pytest"
  - "%PYTHON_EXE% -m pip install --upgrade -e ."

build: off

test_script:
  - "%PYTHON_EXE% -m pytest"