forked from rasbt/mlxtend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
34 lines (29 loc) · 831 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
33
34
build: false
environment:
matrix:
- PYTHON_VERSION: 3.6
MINICONDA: C:/Miniconda36-x64
init:
- ECHO %PYTHON_VERSION% %MINICONDA%
- ECHO conda --version
install:
- set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy scikit-learn pandas nose
- activate test-environment
- pip install nose-exclude
- pip install dlib
- pip install imageio
- pip install scikit-image
test_script:
- nosetests -s -v --exclude-dir=mlxtend/plotting
notifications:
# Email
- provider: Email
to:
subject: 'Build {{status}}'
message: "{{message}}, {{commitId}}, ..."
on_build_status_changed: true