File: appveyor.yml

package info (click to toggle)
pytsk 20190121-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,344 kB
  • sloc: python: 3,645; ansic: 3,090; makefile: 69; sh: 40
file content (19 lines) | stat: -rw-r--r-- 497 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
environment:
  matrix:
    - TARGET: "Python 2.7"
      PYTHON: "C:\\Python27"
      PYTHON_VERSION: "2.7"
    - TARGET: "Python 3.6"
      PYTHON: "C:\\Python36"
      PYTHON_VERSION: "3.6"

install:
  - cmd: '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x86 /release'

build_script:
  - "%PYTHON%\\python.exe setup.py update"
  - "%PYTHON%\\python.exe setup.py build"

test_script:
  - "set PYTHONPATH=build\\lib.win32-%PYTHON_VERSION%"
  - "%PYTHON%\\python.exe run_tests.py"