mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
7b8759fafb
* Add support for terminals on Windows * Bump terminado requirement * Fix handling of default shell * Fix appveyor syntax * Fix requires syntax * Fix version target * Clean up handling of default shell and update version check * Always require terminado * Clean up appveyor test * Make the terminado warning uniform * Default to powershell on Windows * Clean up terminado verison
27 lines
639 B
YAML
27 lines
639 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 -v notebook
|