Skip to content
Snippets Groups Projects

FIX + Doc / Build_readthedocs_documentation

Merged Karim Ahmed requested to merge doc/run_rtd into master
Compare and Show latest version
2 files
+ 5
4
Compare changes
  • Side-by-side
  • Inline
Files
2
%% Cell type:markdown id: tags:
# Test Notebook - CLI
Author: Robert Rosca
Version: 0.1
Notebook for use with the unit and continuous integration tests.
%% Cell type:code id: tags:
```
``` python
root = "root/path/for/nb" # Variables included in the user notebook path must
# be included in the notebook for reasons
in_folder = "./" # input folder
out_folder = "./" # output folder
list_normal = [10] # parameterized list, range allowed
list_intellilist = [2345] # parameterized list with ranges, range allowed
concurrency_parameter = [1] # concurrency parameter, range allowed
number = 0 # parameterized number
```
%% Cell type:markdown id: tags:
Tests notebook execution by just creating an empty file in the output directory.
%% Cell type:code id: tags:
```
``` python
from pathlib import Path
```
%% Cell type:code id: tags:
```
``` python
in_folder = Path(in_folder)
(in_folder / "touch").touch()
```
%% Cell type:markdown id: tags:
Include some non-ascii characters to check that files are reliably processed as UTF-8. 🤖
%% Cell type:code id: tags:
```
``` python
print("🥼")
```
Loading