@@ -4,33 +4,27 @@ trigger:
44variables :
55 miniconda.url : https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
66
7- strategy :
8- matrix :
9- py37 :
10- python.version : " 3.7"
11- py36 :
12- python.version : " 3.6"
13-
147pool :
158 vmImage : macOS-10.14
169
1710steps :
1811# Add conda to PATH.
12+
1913- bash : echo "##vso[task.prependpath]$CONDA/bin"
2014 displayName : Add conda to PATH
2115
22- - script : |
23- # Install Python, py.test, and required packages.
24- conda env create -f environment.yml
25- source activate bayesian-modelling-tutorial
26- conda install -y python=$(python.version)
27- python -m ipykernel install --user --name bayesian-modelling-tutorial
28- displayName : ' Create environment, install correct Python, and activate kernel.'
16+ # - script: |
17+ # # Install Python, py.test, and required packages.
18+ # conda env create -f environment.yml
19+ # source activate bayesian-modelling-tutorial
20+ # conda install -y python=$(python.version)
21+ # python -m ipykernel install --user --name bayesian-modelling-tutorial
22+ # displayName: 'Create environment, install correct Python, and activate kernel.'
2923
30- # Q: Does second script not recognize environment context from 1st script?
31- - script : |
32- source activate bayesian-modelling-tutorial
33- mkdir -p docs/notebooks
34- jupyter nbconvert --config nbconvert_config.py --execute --template full
35- pandoc README.md -o docs/index.html -c static/pandoc.css -s
36- displayName : ' Build docs pages'
24+ # # Q: Does second script not recognize environment context from 1st script?
25+ # - script: |
26+ # source activate bayesian-modelling-tutorial
27+ # mkdir -p docs/notebooks
28+ # jupyter nbconvert --config nbconvert_config.py --execute --template full
29+ # pandoc README.md -o docs/index.html -c static/pandoc.css -s
30+ # displayName: 'Build docs pages'
0 commit comments