forked from dedupeio/dedupe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
32 lines (25 loc) · 982 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
# Continuous integration procedure for AppVeyor
# Based on https://raw.githubusercontent.com/choderalab/itctools/master/appveyor.yml
environment:
matrix:
- PYTHON: "C:\\Python27_32"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- powershell .\\appveyor\\install.ps1
- pip install --use-wheel --no-index http://bunkum.us/numpy-1.9.2+mkl-cp27-none-win32.whl
- pip install --use-wheel --no-index http://bunkum.us/fastcluster-1.1.13-cp27-none-win32.whl
- pip install -r requirements.txt
- cython src/cpredicates.pyx
- python setup.py develop
build: false
test_script:
# Nosetests take care of unit tests
# Behave runs the example scripts and tries to verify if it produces the right output
- coverage run -m nose -I canonical_test
- python tests/canonical_test.py
on_success:
# Could run coveralls here but will leave that to travis tests
- echo Build succesful!
- coverage report