diff --git a/docs/tutorials/tests/test_tutorial.py b/docs/tutorials/tests/test_tutorial.py index 61bbf72d..d1aa9e51 100644 --- a/docs/tutorials/tests/test_tutorial.py +++ b/docs/tutorials/tests/test_tutorial.py @@ -11,6 +11,8 @@ if n_blocks == 0: raise ValueError("Did not find any code blocks") for block in blocks: + # DEBUG: TODO: REMOVE + print(f"{block=}") if block.split()[0].endswith(".py"): print(f"Running: {block}") subprocess.run(block)