Skip to content

Commit

Permalink
Merge 77525b3 into bee1f59
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcfee committed Feb 17, 2018
2 parents bee1f59 + 77525b3 commit 0b84652
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
build: false

environment:
matrix:
- PYTHON_VERSION: 2.7
MINICONDA: C:\Miniconda
- PYTHON_VERSION: 3.5
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda3

init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"

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 nose coverage scikit-learn!=0.19.0 matplotlib==2.0 numba"
- conda install -c conda-forge ffmpeg
- pip install python-coveralls
- pip install --pre -e .[tests]
- activate test-environment

test_script:
- python --version
- nosetests --with-coverage --cover-erase --cover-package=librosa -v -w tests

after_test:
- coveralls

0 comments on commit 0b84652

Please sign in to comment.