forked from pgmpy/pgmpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
39 lines (33 loc) · 1.07 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
skip_tags: true
clone_depth: 50
os: Visual Studio 2015
environment:
matrix:
- PYTHON_VERSION: "2.7"
PYTHON_ARCH: "x86_64"
- PYTHON_VERSION: "3.4"
PYTHON_ARCH: "x86_64"
- PYTHON_VERSION: "3.5"
PYTHON_ARCH: "x86_64"
platform:
- x64
build_script:
- ps: Start-FileDownload "https://repo.continuum.io/miniconda/Miniconda$env:PY_MAJOR_VER-latest-Windows-$env:PYTHON_ARCH.exe" C:\Miniconda.exe; echo "Finished downloading miniconda"
- cmd: C:\Miniconda.exe /S /D=C:\Py
- SET PATH=C:\Py;C:\Py\Scripts;C:\Py\Library\bin;%PATH%
- conda config --set always_yes yes
- conda update conda --quiet
- conda install numpy scipy pandas pip nose mock wrapt --quiet
- pip install pyparsing
- python setup.py develop
- set "GIT_DIR=%cd%"
test_script:
# Excluding test_sampling because it's failing on windows. #755
- nosetests -v --exclude=test_sampling
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/c084306bedf9aa508af2
method: GET
on_build_success: false
on_build_failure: true
on_build_status_changed: true