notebook/appveyor.yml

33 lines
977 B
YAML
Raw Normal View History

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
2020-06-18 01:50:47 +08:00
CONDA_PY_SPEC: 3.6
2018-03-15 22:31:05 +08:00
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
2020-06-18 01:50:47 +08:00
- CONDA_PY: 38
CONDA_PY_SPEC: 3.8
CONDA_INSTALL_LOCN: "C:\\Miniconda37-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
#- cmd: conda update --yes --quiet conda
2020-10-26 19:39:03 +08:00
- cmd: conda install -y python=%CONDA_PY_SPEC% pyzmq tornado jupyter_client nbformat ipykernel pip nodejs pytest nose
# not using `conda install -y` on nbconvent package because there is
# currently a bug with the version that the anaconda installs, so we will just install it with pip
- cmd: pip install nbconvert
- cmd: python setup.py build
2016-09-01 18:08:21 +08:00
- cmd: pip install .[test]
test_script:
2020-10-23 18:59:15 +08:00
- py.test -v notebook --ignore notebook\tests\selenium