notebook/appveyor.yml
Min RK 0a93d38e54 update conda after selecting conda-forge
avoids updating conda from defaults, then downgrading from conda-forge during big install

this appears to fix AppVeyor for now
2017-10-31 10:58:29 +01:00

27 lines
670 B
YAML

# miniconda bootstrap from conda-forge recipe
matrix:
fast_finish: true
environment:
matrix:
- CONDA_PY: 35
CONDA_INSTALL_LOCN: "C:\\Miniconda35-x64"
- CONDA_PY: 27
CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"
platform:
- x64
build: off
install:
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: conda config --set show_channel_urls true
- cmd: conda config --add channels conda-forge
- cmd: conda update --yes --quiet conda
- cmd: conda install -y pyzmq tornado jupyter_client nbformat nbconvert ipykernel pip nodejs nose
- cmd: pip install .[test]
test_script:
- nosetests --exclude-dir notebook\terminal -v notebook