forked from holoviz/datashader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
29 lines (26 loc) · 1000 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
environment:
global:
CHANNELS: "-c conda-forge -c pyviz/label/dev"
matrix:
- PY: "3.6"
CONDA: "C:\\Miniconda36-x64"
install:
- "SET PATH=%CONDA%;%CONDA%\\Scripts;%PATH%"
- "conda install -y -c pyviz pyctdev && doit ecosystem_setup"
- "doit env_create %CHANNELS% --name=test --python=%PY%"
- "activate test"
- "doit develop_install %CHANNELS% -o tests -o examples"
# Fix for https://github.com/conda-forge/pytest-benchmark-feedstock/issues/6
- "pip install pytest-benchmark --ignore-installed"
# Fixes Cannot open include file: 'sys/un.h': No such file or directory
- "pip uninstall -y pyzmq"
- "pip install pyzmq"
# Fixes pkg_resources.DistributionNotFound: The 'imagecodecs>=2020.2.18'
# distribution was not found and is required by tifffile
- "pip uninstall -y imagecodecs"
- "pip install imagecodecs"
- "doit env_capture"
build: off
test_script:
- "doit test_all"
- "set NUMBA_DISABLE_JIT=1 && doit test_unit_nojit & set NUMBA_DISABLE_JIT="