Skip to content

Commit dee8662

Browse files
committed
plan
1 parent c3e2999 commit dee8662

File tree

4 files changed

+309
-2
lines changed

4 files changed

+309
-2
lines changed

_doc/practice/years/2025/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
:maxdepth: 1
88

99
seance1_point2d
10+
seance4_algo

_doc/practice/years/2025/seance4_algo.ipynb

Lines changed: 306 additions & 0 deletions
Large diffs are not rendered by default.

_unittests/ut_xrun_doc/test_documentation_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def run_test(self, fold: str, name: str, verbose=0) -> int:
4040
cmds = [sys.executable, "-u", os.path.join(fold, name)]
4141
p = subprocess.Popen(cmds, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
4242
res = p.communicate()
43-
out, err = res
43+
_out, err = res
4444
st = err.decode("ascii", errors="ignore")
4545
if "No such file or directory" in st:
4646
raise FileNotFoundError(st) # noqa: B904

_unittests/ut_xrun_doc/test_documentation_notebook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def run_test(self, nb_name: str, verbose=0) -> int:
7474
cmds, stdout=subprocess.PIPE, stderr=subprocess.PIPE
7575
)
7676
res = p.communicate()
77-
out, err = res
77+
_out, err = res
7878
st = err.decode("ascii", errors="ignore")
7979
if "No such file or directory" in st:
8080
raise FileNotFoundError(st) # noqa: B904

0 commit comments

Comments
 (0)