forked from datamade/usaddress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
30 lines (24 loc) · 960 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
# Continuous integration procedure for AppVeyor
# Based on https://raw.githubusercontent.com/choderalab/itctools/master/appveyor.yml
environment:
matrix:
- python : 27
- python : 27-x64
- python : 34
- python : 34-x64
install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
- echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 > "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64/vcvars64.bat"
- python -m pip install --upgrade pip
- pip install -r requirements.txt
- pip install -e .
- parserator train training/labeled.xml usaddress
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
- nosetests --with-coverage --cover-package=usaddress
on_success:
# Could run coveralls here but will leave that to travis tests
- echo Build succesful!
- coverage report