forked from SiLab-Bonn/pyBAR_fei4_interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
31 lines (25 loc) · 904 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
build: false # Tell appveyor to not use msbuild
environment:
matrix:
- PYTHON_VERSION: 2.7
MINICONDA: C:\Miniconda
PYTHON_ARCH: "32"
- PYTHON_VERSION: 2.7
MINICONDA: C:\Miniconda-x64
PYTHON_ARCH: "64"
init:
- "ECHO %PYTHON%"
- ps: Start-FileDownload 'http://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' C:\VCForPython27.msi; echo "Done"
- cmd: msiexec /i C:\VCForPython27.msi /quiet /qn
install:
# Miniconda setup + necessary external packages
- set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH% # Miniconda is already installed on appveyor: https://github.com/appveyor/ci/issues/359
- conda install --yes cython nose numpy pytables
- pip install -r requirements.txt
- python.exe setup.py develop
test_script:
- nosetests
after_test:
- python setup.py bdist_wheel
artifacts:
- path: dist\*