forked from librosa/librosa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
27 lines (22 loc) · 834 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
build: false
environment:
matrix:
- PYTHON_VERSION: 3.6
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda36-x64
cache:
- "%MINICONDA%\\envs -> appveyor.yml"
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 install -n root _license
- conda info -a
- "IF NOT EXIST %MINICONDA%\\envs\\test-environment-%PYTHON_VERSION% conda create -q -n test-environment-%PYTHON_VERSION% python=%PYTHON_VERSION% numpy scipy nose coverage scikit-learn!=0.19.0 numba"
- "activate test-environment-%PYTHON_VERSION%"
- conda install -c conda-forge ffmpeg
- pip install -e .[tests]
test_script:
- nosetests --with-coverage --cover-erase --cover-package=librosa -v -w tests