forked from astropy/ci-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
94 lines (74 loc) · 2.84 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows
environment:
global:
PYTHON: "C:\\conda"
MINICONDA_VERSION: "latest"
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci-helpers\\appveyor\\windows_sdk.cmd"
PYTHON_ARCH: "64" # needs to be set for CMD_IN_ENV to succeed. If a mix
# of 32 bit and 64 bit builds are needed, move this
# to the matrix section.
TEST_CMD: "py.test test_env.py"
matrix:
# Note that setting CONDA_CHANNEL_PRIORITY in the next two builds is
# unrelated to the rest of the builds and won't change anything, except
# that we can make sure the conda config was correctly updated.
- PYTHON_VERSION: "2.7"
DEBUG: "True"
PYTEST_VERSION: "<4"
TEST_CMD: "python -c \"import pytest; assert int(pytest.__version__[0])<4\""
- PYTHON_VERSION: "3.5"
NUMPY_VERSION: "1.13"
ASTROPY_VERSION: "lts"
- PYTHON_VERSION: "3.5"
NUMPY_VERSION: "development"
CONDA_DEPENDENCIES: "scipy glymur"
CONDA_CHANNELS: "conda-forge astrofrog"
PIP_DEPENDENCIES: "requests pyparsing"
CONDA_CHANNEL_PRIORITY: "True"
DEBUG: "True"
- PYTHON_VERSION: "3.6"
NUMPY_VERSION: "stable"
ASTROPY_VERSION: "stable"
CONDA_DEPENDENCIES: "matplotlib h5py"
PIP_DEPENDENCIES: "astrodendro"
CONDA_CHANNEL_PRIORITY: "False"
SUNPY_VERSION: "dev"
DEBUG: "True"
# For the Numpy dev build, we also specify a conda package that depends
# on Numpy to make sure that Numpy dev is used (because conda will also
# install Numpy stable)
- PYTHON_VERSION: "3.4"
NUMPY_VERSION: "1.9"
# We deliberately test with Numpy 1.13 to check that installing Astropy
# dev doesn't upgrade Numpy.
- PYTHON_VERSION: "3.5"
NUMPY_VERSION: "1.13"
ASTROPY_VERSION: "development"
# Have to supply "PYTHON_VERSION" only because of windows_sdk.cmd code
- PYTHON_VERSION: "3.5"
CONDA_ENVIRONMENT: "conda_environment.yml"
TEST_CMD: "python -c \"import matplotlib\""
- PYTHON_VERSION: "3.6"
ASTROPY_VERSION: "3.0"
SUNPY_VERSION: "0.9"
PIP_FALLBACK: "False"
CONDA_CHANNELS: "conda-forge"
matrix:
fast_finish: true
platform:
-x64
install:
# Install Miniconda
- "git clone . ci-helpers"
- "powershell ci-helpers/appveyor/install-miniconda.ps1"
# Set path again, need to find a way to avoid doing this again
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "activate test"
# Test that PATH is set correctly
- "conda --version"
- "python --version"
# Not a .NET project, we build ci-helpers in the install step instead
build: false
test_script:
- "%CMD_IN_ENV% %TEST_CMD%"