forked from scikit-hep/awkward-0.x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
51 lines (42 loc) · 1.2 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
environment:
matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.10"
PYTHON_ARCH: "32"
NUMPY: "numpy==1.13.1"
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.10"
PYTHON_ARCH: "64"
NUMPY: "numpy==1.13.1"
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.10"
PYTHON_ARCH: "32"
NUMPY: "numpy==1.15"
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.10"
PYTHON_ARCH: "64"
NUMPY: "numpy==1.15"
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "32"
NUMPY: "numpy==1.13.1"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
NUMPY: "numpy==1.13.1"
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "32"
NUMPY: "numpy==1.15"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
NUMPY: "numpy==1.15"
install:
- "python --version"
build_script:
- "pip install %NUMPY%"
- "pip install pytest pytest-runner h5py uproot-methods"
- "python -c \"import uproot_methods; print(uproot_methods.__version__)\""
- "python -c \"import awkward; print(awkward.__version__)\""
- "pytest -v tests"