forked from IDAES/examples-pse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-ci.yml
32 lines (30 loc) · 944 Bytes
/
build-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Configuration file for build.py,
# to be used for testing and for CI
# Paths used for all sections
paths:
# where the Jupyter notebook source files are
source: src
# where the documentation (generated, hand-written) lives
output: docs_test
# the HTML output directory
html: _build/html
# Settings for running and converting Jupyter Notebooks
notebook:
num_workers: 1
# continue on errors (otherwise stop)
continue_on_error: true
test_mode: true
timeout: 300
# where to put error files. special values: '__stdout__', '__stderr__'
error_file: ci-test-errors.txt
# template file for the "_doc" wrapper RST file
template: docs/jupyter_notebook_sphinx.tpl
directories:
- source: workshops
output: tutorials
match: "Introduction"
# Settings for running Sphinx build
sphinx:
args: "-b html -T docs_test docs_test/_build/html"
error_file: sphinx-errors.txt