py$(PYV): commands[0]> python -m unittest discover $(@D)/tests --verbose testCreateRegistry (test_apis.RegistryTests.testCreateRegistry) ... ok testDeregister (test_apis.RegistryTests.testDeregister) ... ok testGetIndexForName (test_apis.RegistryTests.testGetIndexForName) ... ok testIsSorted (test_apis.RegistryTests.testIsSorted) ... ok testRegisterDupplicate (test_apis.RegistryTests.testRegisterDupplicate) ... ok testRegisterWithoutPriority (test_apis.RegistryTests.testRegisterWithoutPriority) ... ok testRegistryContains (test_apis.RegistryTests.testRegistryContains) ... ok testRegistryDelItem (test_apis.RegistryTests.testRegistryDelItem) ... ok testRegistryGetItemByIndex (test_apis.RegistryTests.testRegistryGetItemByIndex) ... ok testRegistryGetItemByItem (test_apis.RegistryTests.testRegistryGetItemByItem) ... ok testRegistryIter (test_apis.RegistryTests.testRegistryIter) ... ok testRegistrySetItem (test_apis.RegistryTests.testRegistrySetItem) ... ok testRegistrySlice (test_apis.RegistryTests.testRegistrySlice) ... ok testSortRegistry (test_apis.RegistryTests.testSortRegistry) ... ok test_ancestors (test_apis.TestAncestorExclusion.test_ancestors) Test that an extension can exclude parent tags. ... ok test_ancestors_tail (test_apis.TestAncestorExclusion.test_ancestors_tail) Test that an extension can exclude parent tags when dealing with a tail. ... ok testBlockAppend (test_apis.TestBlockAppend.testBlockAppend) Test that appended escapes are only in the current instance. ... ok testParseChunk (test_apis.TestBlockParser.testParseChunk) Test `BlockParser.parseChunk`. ... ok testParseDocument (test_apis.TestBlockParser.testParseDocument) Test `BlockParser.parseDocument`. ... ok testBlankState (test_apis.TestBlockParserState.testBlankState) Test State when empty. ... ok testIsSate (test_apis.TestBlockParserState.testIsSate) Test `State.isstate()`. ... ok testReset (test_apis.TestBlockParserState.testReset) Test `State.reset()`. ... ok testSetSate (test_apis.TestBlockParserState.testSetSate) Test State.set(). ... ok testEncodingOption (test_apis.TestCliOptionParsing.testEncodingOption) ... ok testExtensionConfigOption (test_apis.TestCliOptionParsing.testExtensionConfigOption) ... ok testExtensionConfigOptionAsJSON (test_apis.TestCliOptionParsing.testExtensionConfigOptionAsJSON) ... ok testExtensionConfigOptionBadFormat (test_apis.TestCliOptionParsing.testExtensionConfigOptionBadFormat) ... ok testExtensionConfigOptionMissingFile (test_apis.TestCliOptionParsing.testExtensionConfigOptionMissingFile) ... ok testExtensionOption (test_apis.TestCliOptionParsing.testExtensionOption) ... ok testInputAndOutputFileOptions (test_apis.TestCliOptionParsing.testInputAndOutputFileOptions) ... ok testInputFileOption (test_apis.TestCliOptionParsing.testInputFileOption) ... ok testMultipleExtensionOptions (test_apis.TestCliOptionParsing.testMultipleExtensionOptions) ... ok testNoLazyOlOption (test_apis.TestCliOptionParsing.testNoLazyOlOption) ... ok testNoOptions (test_apis.TestCliOptionParsing.testNoOptions) ... ok testNoisyOption (test_apis.TestCliOptionParsing.testNoisyOption) ... ok testOutputFileOption (test_apis.TestCliOptionParsing.testOutputFileOption) ... ok testOutputFormatOption (test_apis.TestCliOptionParsing.testOutputFormatOption) ... ok testQuietOption (test_apis.TestCliOptionParsing.testQuietOption) ... ok testVerboseOption (test_apis.TestCliOptionParsing.testVerboseOption) ... ok testBooleansParsing (test_apis.TestConfigParsing.testBooleansParsing) ... ok testInvalidBooleansParsing (test_apis.TestConfigParsing.testInvalidBooleansParsing) ... ok testPreserveNone (test_apis.TestConfigParsing.testPreserveNone) ... ok testFileNames (test_apis.TestConvertFile.testFileNames) ... $(@D)/markdown/core.py:436: DeprecationWarning: codecs.open() is deprecated. Use open() instead. output_file = codecs.open(output, "w", ok testFileObjects (test_apis.TestConvertFile.testFileObjects) ... ok testStdinStdout (test_apis.TestConvertFile.testStdinStdout) ... ok testBadOutputFormat (test_apis.TestErrors.testBadOutputFormat) Test failure on bad output_format. ... ok testBaseExtention (test_apis.TestErrors.testBaseExtention) Test that the base Extension class will raise `NotImplemented`. ... ok testDotNotationExtensionWithBadClass (test_apis.TestErrors.testDotNotationExtensionWithBadClass) Test Extension loading with non-existent class name (`path.to.module:Class`). ... ok testLoadBadExtension (test_apis.TestErrors.testLoadBadExtension) Test loading of an Extension with no makeExtension function. ... ok testLoadExtensionFailure (test_apis.TestErrors.testLoadExtensionFailure) Test failure of an extension to load. ... ok testNonExtension (test_apis.TestErrors.testNonExtension) Test loading a non Extension object as an extension. ... ok testAppend (test_apis.TestEscapeAppend.testAppend) Test that appended escapes are only in the current instance. ... ok testReset (test_apis.TestHtmlStash.testReset) Test `HtmlStash.reset`. ... ok testSimpleStore (test_apis.TestHtmlStash.testSimpleStore) Test `HtmlStash.store`. ... ok testStoreMore (test_apis.TestHtmlStash.testStoreMore) Test `HtmlStash.store` with additional blocks. ... ok testBlankInput (test_apis.TestMarkdownBasics.testBlankInput) Test blank input. ... ok testDotNotationExtension (test_apis.TestMarkdownBasics.testDotNotationExtension) Test Extension loading with Name (`path.to.module`). ... ok testDotNotationExtensionWithClass (test_apis.TestMarkdownBasics.testDotNotationExtensionWithClass) Test Extension loading with class name (`path.to.module:Class`). ... ok testEntryPointExtension (test_apis.TestMarkdownBasics.testEntryPointExtension) Test Extension loading with an entry point. ... ok testInstanceExtension (test_apis.TestMarkdownBasics.testInstanceExtension) Test Extension loading with a class instance. ... ok testSimpleInput (test_apis.TestMarkdownBasics.testSimpleInput) Test simple input. ... ok testWhitespaceOnly (test_apis.TestMarkdownBasics.testWhitespaceOnly) Test input of only whitespace. ... ok testInlineProcessorDoesntCrashWithWrongAtomicString (test_apis.testAtomicString.testInlineProcessorDoesntCrashWithWrongAtomicString) Test that an `AtomicString` returned from a Pattern doesn't cause a crash. ... ok testNestedAtomicString (test_apis.testAtomicString.testNestedAtomicString) Test that a nested `AtomicString` is not parsed. ... ok testSimpleAtomicString (test_apis.testAtomicString.testSimpleAtomicString) Test that a simple `AtomicString` is not parsed. ... ok testString (test_apis.testAtomicString.testString) Test that a regular string is parsed. ... ok testCommentIsBlockLevel (test_apis.testETreeComments.testCommentIsBlockLevel) Test that an `ElementTree` `Comment` is recognized as `BlockLevel`. ... ok testCommentIsComment (test_apis.testETreeComments.testCommentIsComment) Test that an `ElementTree` `Comment` passes the `is Comment` test. ... ok testCommentPrettify (test_apis.testETreeComments.testCommentPrettify) Test that an `ElementTree` `Comment` is prettified properly. ... ok testCommentSerialization (test_apis.testETreeComments.testCommentSerialization) Test that an `ElementTree` `Comment` serializes properly. ... ok testPreCodeEmpty (test_apis.testElementPreCodeTests.testPreCodeEmpty) ... ok testPreCodeWithChildren (test_apis.testElementPreCodeTests.testPreCodeWithChildren) ... ok testPreCodeWithSpaceOnly (test_apis.testElementPreCodeTests.testPreCodeWithSpaceOnly) ... ok testPreCodeWithText (test_apis.testElementPreCodeTests.testPreCodeWithText) ... ok testPreCodeWithTrailingSpace (test_apis.testElementPreCodeTests.testPreCodeWithTrailingSpace) ... ok testBrTailNoNewline (test_apis.testElementTailTests.testBrTailNoNewline) Test that last `
` in tree has a new line tail ... ok testBadQNameTag (test_apis.testSerializers.testBadQNameTag) Test serialization of `QName` with no tag. ... ok testHTMLOutput (test_apis.testSerializers.testHTMLOutput) ... ok testHtml (test_apis.testSerializers.testHtml) Test HTML serialization. ... ok testMixedCaseTags (test_apis.testSerializers.testMixedCaseTags) " Test preservation of tag case. ... ok testProsessingInstruction (test_apis.testSerializers.testProsessingInstruction) Test serialization of `ProcessignInstruction`. ... ok testQNameAttribute (test_apis.testSerializers.testQNameAttribute) Test serialization of `QName` attribute. ... ok testQNameEscaping (test_apis.testSerializers.testQNameEscaping) Test `QName` escaping. ... ok testQNamePreEscaping (test_apis.testSerializers.testQNamePreEscaping) Test `QName` that is already partially escaped. ... ok testQNameTag (test_apis.testSerializers.testQNameTag) Test serialization of `QName` tag. ... ok testRegisterSerializer (test_apis.testSerializers.testRegisterSerializer) ... ok testXHTMLOutput (test_apis.testSerializers.testXHTMLOutput) ... ok testXhtml (test_apis.testSerializers.testXhtml) " Test XHTML serialization. ... ok testRE (test_extensions.TestAdmonition.testRE) ... ok testConfigAsKwargsOnInit (test_extensions.TestExtensionClass.testConfigAsKwargsOnInit) ... ok testGetConfig (test_extensions.TestExtensionClass.testGetConfig) ... ok testGetConfigDefault (test_extensions.TestExtensionClass.testGetConfigDefault) ... ok testGetConfigInfo (test_extensions.TestExtensionClass.testGetConfigInfo) ... ok testGetConfigs (test_extensions.TestExtensionClass.testGetConfigs) ... ok testSetConfig (test_extensions.TestExtensionClass.testSetConfig) ... ok testSetConfigWithBadKey (test_extensions.TestExtensionClass.testSetConfigWithBadKey) ... ok testBasicMetaData (test_extensions.TestMetaData.testBasicMetaData) Test basic metadata. ... ok testMetaDataReset (test_extensions.TestMetaData.testMetaDataReset) Test that reset call remove Meta entirely ... ok testMetaDataWithoutNewline (test_extensions.TestMetaData.testMetaDataWithoutNewline) Test document with only metadata and no newline at end. ... ok testMissingMetaData (test_extensions.TestMetaData.testMissingMetaData) Test document without Meta Data. ... ok testYamlMetaData (test_extensions.TestMetaData.testYamlMetaData) Test metadata specified as simple YAML. ... ok testCustomSubstitutions (test_extensions.TestSmarty.testCustomSubstitutions) ... ok testBasicWikilinks (test_extensions.TestWikiLinks.testBasicWikilinks) Test `[[wikilinks]]`. ... ok testComplexSettings (test_extensions.TestWikiLinks.testComplexSettings) Test Complex Settings. ... ok testSimpleSettings (test_extensions.TestWikiLinks.testSimpleSettings) Test Simple Settings. ... ok testURLCallback (test_extensions.TestWikiLinks.testURLCallback) Test used of a custom URL builder. ... ok testWikilinkWhitespace (test_extensions.TestWikiLinks.testWikilinkWhitespace) Test whitespace in `wikilinks`. ... ok testWikilinksMetaData (test_extensions.TestWikiLinks.testWikilinksMetaData) test `MetaData` with `Wikilinks` Extension. ... ok test_amps_and_angle_encoding (test_legacy.TestBasic.test_amps_and_angle_encoding) ... ok test_angle_links_and_img (test_legacy.TestBasic.test_angle_links_and_img) ... ok test_auto_links (test_legacy.TestBasic.test_auto_links) ... ok test_backlash_escapes (test_legacy.TestBasic.test_backlash_escapes) ... ok test_blockquotes_with_code_blocks (test_legacy.TestBasic.test_blockquotes_with_code_blocks) ... ok test_codeblock_in_list (test_legacy.TestBasic.test_codeblock_in_list) ... ok test_hard_wrapped (test_legacy.TestBasic.test_hard_wrapped) ... ok test_horizontal_rules (test_legacy.TestBasic.test_horizontal_rules) ... ok test_links_inline (test_legacy.TestBasic.test_links_inline) ... ok test_links_reference (test_legacy.TestBasic.test_links_reference) ... ok test_literal_quotes (test_legacy.TestBasic.test_literal_quotes) ... ok test_markdown_documentation_basics (test_legacy.TestBasic.test_markdown_documentation_basics) ... ok test_markdown_syntax (test_legacy.TestBasic.test_markdown_syntax) ... ok test_nested_blockquotes (test_legacy.TestBasic.test_nested_blockquotes) ... ok test_ordered_and_unordered_list (test_legacy.TestBasic.test_ordered_and_unordered_list) ... ok test_strong_and_em_together (test_legacy.TestBasic.test_strong_and_em_together) ... ok test_tabs (test_legacy.TestBasic.test_tabs) ... ok test_tidyness (test_legacy.TestBasic.test_tidyness) ... ok test_admonition (test_legacy.TestExtensions.test_admonition) ... ok test_attr_list (test_legacy.TestExtensions.test_attr_list) ... ok test_codehilite (test_legacy.TestExtensions.test_codehilite) ... skipped 'Excluded' test_github_flavored (test_legacy.TestExtensions.test_github_flavored) ... ok test_nl2br_w_attr_list (test_legacy.TestExtensions.test_nl2br_w_attr_list) ... ok test_sane_lists (test_legacy.TestExtensions.test_sane_lists) ... ok test_toc (test_legacy.TestExtensions.test_toc) ... ok test_toc_invalid (test_legacy.TestExtensions.test_toc_invalid) ... ok test_toc_nested (test_legacy.TestExtensions.test_toc_nested) ... ok test_toc_nested2 (test_legacy.TestExtensions.test_toc_nested2) ... ok test_toc_nested_list (test_legacy.TestExtensions.test_toc_nested_list) ... ok test_toc_out_of_order (test_legacy.TestExtensions.test_toc_out_of_order) ... ok test_wikilinks (test_legacy.TestExtensions.test_wikilinks) ... ok test_def_in_list (test_legacy.TestExtensionsExtra.test_def_in_list) ... ok test_extra_config (test_legacy.TestExtensionsExtra.test_extra_config) ... ok test_footnote (test_legacy.TestExtensionsExtra.test_footnote) ... ok test_footnote_many_footnotes (test_legacy.TestExtensionsExtra.test_footnote_many_footnotes) ... ok test_footnote_placeholder (test_legacy.TestExtensionsExtra.test_footnote_placeholder) ... ok test_footnote_placeholder_depth (test_legacy.TestExtensionsExtra.test_footnote_placeholder_depth) ... ok test_loose_def_list (test_legacy.TestExtensionsExtra.test_loose_def_list) ... ok test_markdown_syntax (test_legacy.TestExtensionsExtra.test_markdown_syntax) ... ok test_named_markers (test_legacy.TestExtensionsExtra.test_named_markers) ... ok test_raw_html (test_legacy.TestExtensionsExtra.test_raw_html) ... ok test_simple_def_lists (test_legacy.TestExtensionsExtra.test_simple_def_lists) ... ok test_CRLF_line_ends (test_legacy.TestMisc.test_CRLF_line_ends) ... ok test_adjacent_headers (test_legacy.TestMisc.test_adjacent_headers) ... ok test_arabic (test_legacy.TestMisc.test_arabic) ... ok test_autolinks_with_asterisks (test_legacy.TestMisc.test_autolinks_with_asterisks) ... ok test_autolinks_with_asterisks_russian (test_legacy.TestMisc.test_autolinks_with_asterisks_russian) ... ok test_backtick_escape (test_legacy.TestMisc.test_backtick_escape) ... ok test_bidi (test_legacy.TestMisc.test_bidi) ... ok test_blank_block_quote (test_legacy.TestMisc.test_blank_block_quote) ... ok test_blank_lines_in_codeblocks (test_legacy.TestMisc.test_blank_lines_in_codeblocks) ... ok test_blockquote (test_legacy.TestMisc.test_blockquote) ... ok test_blockquote_below_paragraph (test_legacy.TestMisc.test_blockquote_below_paragraph) ... ok test_blockquote_hr (test_legacy.TestMisc.test_blockquote_hr) ... ok test_bold_links (test_legacy.TestMisc.test_bold_links) ... ok test_br (test_legacy.TestMisc.test_br) ... ok test_bracket_re (test_legacy.TestMisc.test_bracket_re) ... ok test_brackets_in_img_title (test_legacy.TestMisc.test_brackets_in_img_title) ... ok test_code_first_line (test_legacy.TestMisc.test_code_first_line) ... ok test_em_around_links (test_legacy.TestMisc.test_em_around_links) ... ok test_em_strong (test_legacy.TestMisc.test_em_strong) ... ok test_em_strong_complex (test_legacy.TestMisc.test_em_strong_complex) ... ok test_email (test_legacy.TestMisc.test_email) ... ok test_escaped_links (test_legacy.TestMisc.test_escaped_links) ... ok test_funky_list (test_legacy.TestMisc.test_funky_list) ... ok test_h1 (test_legacy.TestMisc.test_h1) ... ok test_hash (test_legacy.TestMisc.test_hash) ... ok test_header_in_lists (test_legacy.TestMisc.test_header_in_lists) ... ok test_headers (test_legacy.TestMisc.test_headers) ... ok test_hline (test_legacy.TestMisc.test_hline) ... ok test_image_2 (test_legacy.TestMisc.test_image_2) ... ok test_image_in_links (test_legacy.TestMisc.test_image_in_links) ... ok test_ins_at_start_of_paragraph (test_legacy.TestMisc.test_ins_at_start_of_paragraph) ... ok test_inside_html (test_legacy.TestMisc.test_inside_html) ... ok test_japanese (test_legacy.TestMisc.test_japanese) ... ok test_lazy_block_quote (test_legacy.TestMisc.test_lazy_block_quote) ... ok test_link_with_parenthesis (test_legacy.TestMisc.test_link_with_parenthesis) ... ok test_lists (test_legacy.TestMisc.test_lists) ... ok test_lists2 (test_legacy.TestMisc.test_lists2) ... ok test_lists3 (test_legacy.TestMisc.test_lists3) ... ok test_lists4 (test_legacy.TestMisc.test_lists4) ... ok test_lists5 (test_legacy.TestMisc.test_lists5) ... ok test_lists6 (test_legacy.TestMisc.test_lists6) ... ok test_lists7 (test_legacy.TestMisc.test_lists7) ... ok test_lists8 (test_legacy.TestMisc.test_lists8) ... ok test_missing_link_def (test_legacy.TestMisc.test_missing_link_def) ... ok test_multi_paragraph_block_quote (test_legacy.TestMisc.test_multi_paragraph_block_quote) ... ok test_multi_test (test_legacy.TestMisc.test_multi_test) ... ok test_nested_lists (test_legacy.TestMisc.test_nested_lists) ... ok test_nested_patterns (test_legacy.TestMisc.test_nested_patterns) ... ok test_normalize (test_legacy.TestMisc.test_normalize) ... ok test_numeric_entity (test_legacy.TestMisc.test_numeric_entity) ... ok test_para_with_hr (test_legacy.TestMisc.test_para_with_hr) ... ok test_russian (test_legacy.TestMisc.test_russian) ... ok test_smart_em (test_legacy.TestMisc.test_smart_em) ... ok test_some_test (test_legacy.TestMisc.test_some_test) ... ok test_span (test_legacy.TestMisc.test_span) ... ok test_strong_with_underscores (test_legacy.TestMisc.test_strong_with_underscores) ... ok test_stronintags (test_legacy.TestMisc.test_stronintags) ... ok test_tabs_in_lists (test_legacy.TestMisc.test_tabs_in_lists) ... ok test_two_spaces (test_legacy.TestMisc.test_two_spaces) ... ok test_uche (test_legacy.TestMisc.test_uche) ... ok test_underscores (test_legacy.TestMisc.test_underscores) ... ok test_url_spaces (test_legacy.TestMisc.test_url_spaces) ... ok test__version__IsValid (test_meta.TestVersion.test__version__IsValid) Test that __version__ is valid and normalized. ... ok test_get_version (test_meta.TestVersion.test_get_version) Test that _get_version formats __version_info__ as required by PEP 440. ... ok test_nesting_limit (test_syntax.blocks.test_blockquotes.TestBlockquoteBlocks.test_nesting_limit) ... ok test_codeblock_escape (test_syntax.blocks.test_code_blocks.TestCodeBlocks.test_codeblock_escape) ... ok test_codeblock_second_line (test_syntax.blocks.test_code_blocks.TestCodeBlocks.test_codeblock_second_line) ... ok test_codeblock_with_blankline (test_syntax.blocks.test_code_blocks.TestCodeBlocks.test_codeblock_with_blankline) ... ok test_multiline_codeblock (test_syntax.blocks.test_code_blocks.TestCodeBlocks.test_multiline_codeblock) ... ok test_spaced_codeblock (test_syntax.blocks.test_code_blocks.TestCodeBlocks.test_spaced_codeblock) ... ok test_tabbed_codeblock (test_syntax.blocks.test_code_blocks.TestCodeBlocks.test_tabbed_codeblock) ... ok test_escaped_hash (test_syntax.blocks.test_headers.TestHashHeaders.test_escaped_hash) ... ok test_hash_followed_by_p (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_followed_by_p) ... ok test_hash_gt6_closed (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_gt6_closed) ... ok test_hash_gt6_closed_mismatch (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_gt6_closed_mismatch) ... ok test_hash_gt6_closed_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_gt6_closed_missing_space) ... ok test_hash_gt6_closed_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_gt6_closed_trailing_space) ... ok test_hash_gt6_open (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_gt6_open) ... ok test_hash_gt6_open_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_gt6_open_missing_space) ... ok test_hash_gt6_open_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_gt6_open_trailing_space) ... ok test_hash_h1_closed (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h1_closed) ... ok test_hash_h1_closed_mismatch (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h1_closed_mismatch) ... ok test_hash_h1_closed_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h1_closed_missing_space) ... ok test_hash_h1_closed_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h1_closed_trailing_space) ... ok test_hash_h1_followed_by_p (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h1_followed_by_p) ... ok test_hash_h1_leading_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h1_leading_space) ... ok test_hash_h1_open (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h1_open) ... ok test_hash_h1_open_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h1_open_missing_space) ... ok test_hash_h1_open_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h1_open_trailing_space) ... ok test_hash_h2_closed (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h2_closed) ... ok test_hash_h2_closed_mismatch (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h2_closed_mismatch) ... ok test_hash_h2_closed_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h2_closed_missing_space) ... ok test_hash_h2_closed_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h2_closed_trailing_space) ... ok test_hash_h2_followed_by_p (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h2_followed_by_p) ... ok test_hash_h2_leading_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h2_leading_space) ... ok test_hash_h2_open (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h2_open) ... ok test_hash_h2_open_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h2_open_missing_space) ... ok test_hash_h2_open_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h2_open_trailing_space) ... ok test_hash_h3_closed (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h3_closed) ... ok test_hash_h3_closed_mismatch (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h3_closed_mismatch) ... ok test_hash_h3_closed_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h3_closed_missing_space) ... ok test_hash_h3_closed_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h3_closed_trailing_space) ... ok test_hash_h3_followed_by_p (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h3_followed_by_p) ... ok test_hash_h3_leading_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h3_leading_space) ... ok test_hash_h3_open (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h3_open) ... ok test_hash_h3_open_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h3_open_missing_space) ... ok test_hash_h3_open_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h3_open_trailing_space) ... ok test_hash_h4_closed (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h4_closed) ... ok test_hash_h4_closed_mismatch (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h4_closed_mismatch) ... ok test_hash_h4_closed_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h4_closed_missing_space) ... ok test_hash_h4_closed_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h4_closed_trailing_space) ... ok test_hash_h4_followed_by_p (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h4_followed_by_p) ... ok test_hash_h4_leading_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h4_leading_space) ... ok test_hash_h4_open (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h4_open) ... ok test_hash_h4_open_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h4_open_missing_space) ... ok test_hash_h4_open_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h4_open_trailing_space) ... ok test_hash_h5_closed (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h5_closed) ... ok test_hash_h5_closed_mismatch (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h5_closed_mismatch) ... ok test_hash_h5_closed_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h5_closed_missing_space) ... ok test_hash_h5_closed_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h5_closed_trailing_space) ... ok test_hash_h5_followed_by_p (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h5_followed_by_p) ... ok test_hash_h5_leading_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h5_leading_space) ... ok test_hash_h5_open (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h5_open) ... ok test_hash_h5_open_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h5_open_missing_space) ... ok test_hash_h5_open_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h5_open_trailing_space) ... ok test_hash_h6_closed (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h6_closed) ... ok test_hash_h6_closed_mismatch (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h6_closed_mismatch) ... ok test_hash_h6_closed_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h6_closed_missing_space) ... ok test_hash_h6_closed_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h6_closed_trailing_space) ... ok test_hash_h6_followed_by_p (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h6_followed_by_p) ... ok test_hash_h6_leading_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h6_leading_space) ... ok test_hash_h6_open (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h6_open) ... ok test_hash_h6_open_missing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h6_open_missing_space) ... ok test_hash_h6_open_trailing_space (test_syntax.blocks.test_headers.TestHashHeaders.test_hash_h6_open_trailing_space) ... ok test_no_blank_lines_between_hashs (test_syntax.blocks.test_headers.TestHashHeaders.test_no_blank_lines_between_hashs) ... ok test_p_followed_by_hash (test_syntax.blocks.test_headers.TestHashHeaders.test_p_followed_by_hash) ... ok test_random_hash_levels (test_syntax.blocks.test_headers.TestHashHeaders.test_random_hash_levels) ... ok test_unescaped_hash (test_syntax.blocks.test_headers.TestHashHeaders.test_unescaped_hash) ... ok test_p_followed_by_setext_h1 (test_syntax.blocks.test_headers.TestSetextHeaders.test_p_followed_by_setext_h1) ... skipped 'This is broken in Python-Markdown' test_p_followed_by_setext_h2 (test_syntax.blocks.test_headers.TestSetextHeaders.test_p_followed_by_setext_h2) ... skipped 'This is broken in Python-Markdown' test_setext_h1 (test_syntax.blocks.test_headers.TestSetextHeaders.test_setext_h1) ... ok test_setext_h1_followed_by_p (test_syntax.blocks.test_headers.TestSetextHeaders.test_setext_h1_followed_by_p) ... ok test_setext_h1_mismatched_length (test_syntax.blocks.test_headers.TestSetextHeaders.test_setext_h1_mismatched_length) ... ok test_setext_h2 (test_syntax.blocks.test_headers.TestSetextHeaders.test_setext_h2) ... ok test_setext_h2_followed_by_p (test_syntax.blocks.test_headers.TestSetextHeaders.test_setext_h2_followed_by_p) ... ok test_setext_h2_mismatched_length (test_syntax.blocks.test_headers.TestSetextHeaders.test_setext_h2_mismatched_length) ... ok test_2_consecutive_hr (test_syntax.blocks.test_hr.TestHorizontalRules.test_2_consecutive_hr) ... ok test_hr_after_emstrong (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_after_emstrong) ... ok test_hr_after_paragraph (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_after_paragraph) ... ok test_hr_asterisks (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks) ... ok test_hr_asterisks_1_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_1_indent) ... ok test_hr_asterisks_2_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_2_indent) ... ok test_hr_asterisks_3_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_3_indent) ... ok test_hr_asterisks_long (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_long) ... ok test_hr_asterisks_spaces (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_spaces) ... ok test_hr_asterisks_spaces_1_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_spaces_1_indent) ... ok test_hr_asterisks_spaces_2_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_spaces_2_indent) ... ok test_hr_asterisks_spaces_3_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_spaces_3_indent) ... ok test_hr_asterisks_spaces_long (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_spaces_long) ... ok test_hr_asterisks_spaces_trailing_space (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_spaces_trailing_space) ... ok test_hr_asterisks_trailing_space (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_asterisks_trailing_space) ... ok test_hr_before_paragraph (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_before_paragraph) ... ok test_hr_hyphens (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens) ... ok test_hr_hyphens_1_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_1_indent) ... ok test_hr_hyphens_2_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_2_indent) ... ok test_hr_hyphens_3_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_3_indent) ... ok test_hr_hyphens_long (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_long) ... ok test_hr_hyphens_spaces (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_spaces) ... ok test_hr_hyphens_spaces_1_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_spaces_1_indent) ... ok test_hr_hyphens_spaces_2_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_spaces_2_indent) ... ok test_hr_hyphens_spaces_3_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_spaces_3_indent) ... ok test_hr_hyphens_spaces_long (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_spaces_long) ... ok test_hr_hyphens_spaces_trailing_space (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_spaces_trailing_space) ... ok test_hr_hyphens_trailing_space (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_hyphens_trailing_space) ... ok test_hr_underscores (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores) ... ok test_hr_underscores_1_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_1_indent) ... ok test_hr_underscores_2_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_2_indent) ... ok test_hr_underscores_3_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_3_indent) ... ok test_hr_underscores_long (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_long) ... ok test_hr_underscores_spaces (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_spaces) ... ok test_hr_underscores_spaces_1_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_spaces_1_indent) ... ok test_hr_underscores_spaces_2_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_spaces_2_indent) ... ok test_hr_underscores_spaces_3_indent (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_spaces_3_indent) ... ok test_hr_underscores_spaces_long (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_spaces_long) ... ok test_hr_underscores_spaces_trailing_space (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_spaces_trailing_space) ... ok test_hr_underscores_trailing_space (test_syntax.blocks.test_hr.TestHorizontalRules.test_hr_underscores_trailing_space) ... ok test_not_hr_2_asterisks (test_syntax.blocks.test_hr.TestHorizontalRules.test_not_hr_2_asterisks) ... ok test_not_hr_2_asterisks_spaces (test_syntax.blocks.test_hr.TestHorizontalRules.test_not_hr_2_asterisks_spaces) ... ok test_not_hr_2_hyphens (test_syntax.blocks.test_hr.TestHorizontalRules.test_not_hr_2_hyphens) ... ok test_not_hr_2_hyphens_spaces (test_syntax.blocks.test_hr.TestHorizontalRules.test_not_hr_2_hyphens_spaces) ... ok test_not_hr_2_underscores (test_syntax.blocks.test_hr.TestHorizontalRules.test_not_hr_2_underscores) ... ok test_not_hr_2_underscores_spaces (test_syntax.blocks.test_hr.TestHorizontalRules.test_not_hr_2_underscores_spaces) ... ok test_not_hr_end_in_char (test_syntax.blocks.test_hr.TestHorizontalRules.test_not_hr_end_in_char) ... ok test_adjacent_raw_blocks (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_adjacent_raw_blocks) ... ok test_adjacent_raw_blocks_with_blank_lines (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_adjacent_raw_blocks_with_blank_lines) ... ok test_amperstand (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_amperstand) ... ok test_auto_links_dont_break_parser (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_auto_links_dont_break_parser) ... ok test_blank_lines_in_raw (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_blank_lines_in_raw) ... ok test_bogus_comment (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_bogus_comment) ... ok test_bogus_comment_endtag (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_bogus_comment_endtag) ... ok test_charref (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_charref) ... ok test_closed_startendtag (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_closed_startendtag) ... ok test_closed_startendtag_with_attrs (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_closed_startendtag_with_attrs) ... ok test_closed_startendtag_without_space (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_closed_startendtag_without_space) ... ok test_code_span (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_code_span) ... ok test_code_span_open_gt (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_code_span_open_gt) ... ok test_comment_in_code_block (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_comment_in_code_block) ... ok test_comment_in_code_span (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_comment_in_code_span) ... ok test_entityref (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_entityref) ... ok test_hr_only_end (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_hr_only_end) ... ok test_hr_only_start (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_hr_only_start) ... ok test_hr_self_close (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_hr_self_close) ... ok test_hr_start_and_end (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_hr_start_and_end) ... ok test_hr_with_content (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_hr_with_content) ... ok test_inline_script_tags (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_inline_script_tags) ... ok test_invalid_comment_end (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_invalid_comment_end) ... ok test_multiline_attributes (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_multiline_attributes) ... ok test_multiline_markdown_with_code_span (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_multiline_markdown_with_code_span) ... ok test_multiline_raw (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_multiline_raw) ... ok test_multiple_bogus_comments_no_hang (test_syntax.blocks.test_html_blocks.TestHTMLBlocks.test_multiple_bogus_comments_no_hang) Test that multiple bogus comments (