2016-09-01 18:08:21 +08:00
|
|
|
# miniconda bootstrap from conda-forge recipe
|
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
|
|
|
|
environment:
|
|
|
|
matrix:
|
2018-03-15 22:31:05 +08:00
|
|
|
- CONDA_PY: 36
|
|
|
|
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
|
2016-09-01 18:08:21 +08:00
|
|
|
- CONDA_PY: 27
|
2017-02-01 19:27:13 +08:00
|
|
|
CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"
|
2016-09-01 18:08:21 +08:00
|
|
|
|
|
|
|
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
|
2018-03-15 22:30:41 +08:00
|
|
|
#- cmd: conda update --yes --quiet conda
|
2016-09-01 18:08:21 +08:00
|
|
|
- cmd: conda install -y pyzmq tornado jupyter_client nbformat nbconvert ipykernel pip nodejs nose
|
|
|
|
- cmd: pip install .[test]
|
|
|
|
|
|
|
|
test_script:
|
2018-02-14 01:01:00 +08:00
|
|
|
- nosetests -v notebook --exclude-dir notebook\tests\selenium
|