We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c256d80 commit 526cd34Copy full SHA for 526cd34
tests/test_notebooks.py
@@ -21,5 +21,5 @@ def test_run_notebooks(md_file):
21
notebook = jupytext.readf(md_file)
22
context = {}
23
for cell in notebook.cells:
24
- if cell.cell_type == 'code':
+ if cell.cell_type == 'code' and not cell.source.startswith('%'):
25
exec(cell.source, context)
0 commit comments