-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.appveyor.yml
35 lines (28 loc) · 847 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
environment:
matrix:
- PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
MINICONDA: "C:\\Miniconda"
- PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
MINICONDA: "C:\\Miniconda-x64"
- PYTHON_VERSION: "3.6"
PYTHON_ARCH: "32"
MINICONDA: "C:\\Miniconda3"
- PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
MINICONDA: "C:\\Miniconda3-x64"
init:
- "ECHO %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%"
install:
- ps: .\.appveyor_update_version.ps1
- "SET PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- "conda create -q -n test-environment python=%PYTHON_VERSION% cython numpy scipy"
- activate test-environment
build_script:
- pip install -e .
test_script:
- python -m unittest discover bandmat