Skip to content

Commit fe31d44

Browse files
committed
remove an obsolete test
1 parent 7b828dd commit fe31d44

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

tests/test_execute.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -92,23 +92,6 @@ def test_basic(doctree, buildername):
9292
assert celloutput.children[0].rawsource.strip() == "4"
9393

9494

95-
def test_basic_old_entrypoint(doctree):
96-
source = """
97-
.. jupyter-execute::
98-
99-
2 + 2
100-
"""
101-
tree = doctree(source, entrypoint="jupyter_sphinx.execute")
102-
(cell,) = tree.traverse(JupyterCellNode)
103-
(cellinput, celloutput) = cell.children
104-
assert not cell.attributes["code_below"]
105-
assert not cell.attributes["hide_code"]
106-
assert not cell.attributes["hide_output"]
107-
assert not cellinput.children[0]["linenos"]
108-
assert cellinput.children[0].rawsource.strip() == "2 + 2"
109-
assert celloutput.children[0].rawsource.strip() == "4"
110-
111-
11295
def test_hide_output(doctree):
11396
source = """
11497
.. jupyter-execute::

0 commit comments

Comments
 (0)