Files
mlxtend/.appveyor.yml
2017-06-03 13:22:27 -04:00

25 lines
618 B
YAML

build: false
environment:
matrix:
- PYTHON_VERSION: 3.6
MINICONDA: C:/Miniconda36-x64
- PYTHON_VERSION: 2.7
MINICONDA: C:/Miniconda-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
test_script:
- nosetests -s -v --exclude-dir=mlxtend/plotting