-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathappveyor.yml
More file actions
29 lines (23 loc) · 794 Bytes
/
Copy pathappveyor.yml
File metadata and controls
29 lines (23 loc) · 794 Bytes
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
skip_commits:
message: /^Merge pull request /
environment:
PYTHONIOENCODING: "UTF-8"
matrix:
- PYTHON_VERSION: "3.6"
PYTHON_ARCH: "32"
CONDA_PY: "36"
CONDA_INSTALL_LOCN: "C:\\Miniconda36"
- PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
CONDA_PY: "36"
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
install:
# Use the pre-installed Miniconda for the desired arch
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: conda update -y -q conda
- cmd: conda config --system --add pinned_packages defaults::conda
- cmd: conda install -y -q -c conda-forge -c cmutel -c haasad numpy scipy bw2data bw2calc stats_arrays peewee wrapt pytest eight future=0.16.0
- cmd: pip install -e .
build: false
test_script:
- "pytest -vv"