File: test_basic_failing_inline.xml

package info (click to toggle)
myst-nb 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,452 kB
  • sloc: python: 6,066; xml: 1,434; makefile: 33
file content (18 lines) | stat: -rw-r--r-- 982 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<document source="basic_failing">
    <section ids="a-title" names="a\ title">
        <title>
            a title
        <paragraph>
            some text
        <container cell_index="1" cell_metadata="{}" classes="cell" exec_count="1" nb_element="cell_code">
            <container classes="cell_input" nb_element="cell_code_source">
                <literal_block language="ipython3" xml:space="preserve">
                    raise Exception("oopsie!")
            <container classes="cell_output" nb_element="cell_code_output">
                <literal_block classes="output traceback" language="ipythontb" xml:space="preserve">
                    ---------------------------------------------------------------------------
                    Exception                                 Traceback (most recent call last)
                    Cell In[1], line 1
                    ----> 1 raise Exception("oopsie!")
                    
                    Exception: oopsie!