File: .appveyor.yml

package info (click to toggle)
python-blosc 1.7.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 384 kB
  • sloc: python: 848; ansic: 462; makefile: 223; sh: 6
file content (26 lines) | stat: -rw-r--r-- 709 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
environment:

  matrix:
    - PYTHON: "C:\\Python27"
    - PYTHON: "C:\\Python27-x64"
    - PYTHON: "C:\\Python34"
    - PYTHON: "C:\\Python34-x64"
      DISTUTILS_USE_SDK: "1"
    - PYTHON: "C:\\Python35"
    - PYTHON: "C:\\Python35-x64"
    - PYTHON: "C:\\Python36"
    - PYTHON: "C:\\Python36-x64"
    - PYTHON: "C:\\Python37"
    - PYTHON: "C:\\Python37-x64"

install:
  # We need wheel installed to build wheels
  - ".build.cmd %PYTHON%\\python.exe -m pip install numpy psutil"
  - ".build.cmd %PYTHON%\\python.exe setup.py build_clib"
  - ".build.cmd %PYTHON%\\python.exe setup.py build_ext --inplace"

build: off

test_script:
  - "set PYTHONPATH=."
  - ".build.cmd %PYTHON%\\python.exe blosc/test.py"