forked from h5py/h5py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
63 lines (51 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# from https://packaging.python.org/en/latest/appveyor/
image: Visual Studio 2019
environment:
TOX_TESTENV_PASSENV: "HDF5_DIR"
H5PY_ENFORCE_COVERAGE: "YES"
matrix:
### USING HDF5 1.10 ###
- PYTHON: "C:\\Python38"
TOXENV: "py38-test-deps"
HDF5_VSVERSION: "14"
HDF5_DIR: "C:\\hdf5\\%HDF5_VERSION%\\%HDF5_VSVERSION%"
HDF5_VERSION: "1.10.6"
### USING HDF5 1.12 ###
- PYTHON: "C:\\Python39"
TOXENV: "py39-test-deps"
HDF5_VSVERSION: "14"
HDF5_DIR: "C:\\hdf5\\%HDF5_VERSION%\\%HDF5_VSVERSION%"
HDF5_VERSION: "1.12.0"
- PYTHON: "C:\\Python311"
TOXENV: "py311-test-deps"
HDF5_VSVERSION: "14"
HDF5_DIR: "C:\\hdf5\\%HDF5_VERSION%\\%HDF5_VSVERSION%"
HDF5_VERSION: "1.12.2"
install:
# We need wheel installed to build wheels
- "%PYTHON%\\python.exe -m pip install --upgrade wheel pip setuptools"
- "py -3.8 -m pip install --upgrade wheel pip setuptools virtualenv"
- "py -3.8 -m pip install requests"
- "py -3.8 ci\\get_hdf5_win.py"
- "py -3.8 -m pip install tox codecov"
build: off
test_script:
# Put your test command here.
# Note that you must use the environment variable %PYTHON% to refer to
# the interpreter you're using - Appveyor does not do anything special
# to put the Python evrsion you want to use on PATH.
- "py -3.8 -m tox run --discover %PYTHON%\\python.exe"
# This is commented out as there's no easy way to deal with numpy dropping
# older python versions without a recent pip/setuptools.
#after_test:
# # This step builds your wheels.
# - "%PYTHON%\\python.exe setup.py bdist_wheel"
#
#artifacts:
# # bdist_wheel puts your built wheel in the dist directory
# - path: dist\*
cache:
- "%LOCALAPPDATA%\\pip\\Cache"
- "C:\\hdf5"
on_success:
- "py -3.8 ci\\upload_coverage.py"