forked from PyAbel/PyAbel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
47 lines (40 loc) · 1.37 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
build: false
environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd"
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.5
PYTHON_ARCH: "32"
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: 3.5
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
# Remove cygwin because it clashes with conda
# see http://help.appveyor.com/discussions/problems/3712-git-remote-https-seems-to-be-broken
- rmdir C:\\cygwin /s /q
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- "conda create -q -n abel-env python=%PYTHON_VERSION% numpy scipy nose cython==0.24.1"
- activate abel-env
- pip install coverage
- dir
- "cd C:\\projects\\PyAbel"
# - python setup.py build_ext --inplace
- python setup.py install
test_script:
- "cd C:\\"
- python -c "import abel.tests; abel.tests.run_cli(coverage=True)"