forked from holoviz/datashader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
38 lines (31 loc) · 974 Bytes
/
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
environment:
matrix:
- PY: "2.7"
PYTHON: "C:\\Python27-x64"
CONDA: "C:\\Miniconda-x64"
- PY: "3.4"
PYTHON: "C:\\Python34-x64"
CONDA: "C:\\Miniconda3-x64"
- PY: "3.5"
PYTHON: "C:\\Python35-x64"
CONDA: "C:\\Miniconda35-x64"
- PY: "3.6"
PYTHON: "C:\\Python36-x64"
CONDA: "C:\\Miniconda36-x64"
install:
# Update path
- "SET PATH=%CONDA%;%CONDA%\\Scripts;%PATH%"
# Update conda
- "conda config --set always_yes yes --set changeps1 no"
- "conda update -q conda"
# Install dependencies
- "conda create -n test-environment python=%PY%"
- "activate test-environment"
- "conda install dask numba numpy pandas pillow pytest toolz xarray datashape odo colorcet scikit-image param"
- "conda install rasterio -c conda-forge"
# Optional dependencies, for testing only
- "conda install matplotlib"
- "python setup.py develop --no-deps"
build: off
test_script:
- "pytest -x -v datashader"