-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
46 lines (37 loc) · 1.12 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
skip_commits:
message: /^Merge pull request /
environment:
PYTHONIOENCODING: "UTF-8"
matrix:
- PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
CONDA_PY: "27"
CONDA_INSTALL_LOCN: "C:\\Miniconda"
- PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
CONDA_PY: "27"
CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"
- PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
CONDA_PY: "35"
CONDA_INSTALL_LOCN: "C:\\Miniconda35-x64"
- 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 numpy asteval stats_arrays pytest eight
- cmd: cd
- cmd: pip install astunparse
- cmd: pip install -e .
build: false
test_script:
- "pytest"