-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathappveyor.yml
30 lines (24 loc) · 905 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
skip_commits:
message: /^Merge pull request /
build: false
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 install -y -q -c cmutel -c conda-forge -c konstantinstadler bw2parameters stats_arrays numpy scipy psutil bw2parameters appdirs arrow docopt docutils jinja2 lxml pandas pyprind pytest cytoolz wrapt voluptuous constructive_geometries
- cmd: pip install stats_arrays
test_script:
- pytest
- "python setup.py -q install"
- "python.exe tests/manual/run_all_ci.py"