forked from SiLab-Bonn/pymosa_mimosa26_interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
30 lines (23 loc) · 798 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
build: false # Tell appveyor to not use msbuild
environment:
matrix:
- PYTHON: 2.7
platform:
- x86
- x64
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=C:\Miniconda;C:\Miniconda\Scripts;%PATH% # miniconda is already installed on appveyor: https://github.com/appveyor/ci/issues/359
- conda install --yes cython mock nose cython 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\*