all tests now discoverable, linebreak now inline object.
Python CI / test (push) Failing after 26s

This commit is contained in:
2025-06-07 14:42:32 +02:00
parent ba6d8ca906
commit ab84691278
6 changed files with 14 additions and 9 deletions
+2 -2
View File
@@ -8,9 +8,9 @@ import unittest
from pyWebLayout.abstract.block import (
Block, BlockType, Paragraph, Heading, HeadingLevel, Quote, CodeBlock,
HList, ListStyle, ListItem, Table, TableRow, TableCell,
HorizontalRule, LineBreak, Image
HorizontalRule, Image
)
from pyWebLayout.abstract.inline import Word
from pyWebLayout.abstract.inline import Word, LineBreak
from pyWebLayout.style import Font
+2 -2
View File
@@ -10,9 +10,9 @@ from pyWebLayout.io.readers.html_content import HTMLContentReader
from pyWebLayout.abstract.document import Document
from pyWebLayout.abstract.block import (
Paragraph, Heading, HeadingLevel, HList, ListStyle,
Table, Quote, CodeBlock, HorizontalRule, LineBreak
Table, Quote, CodeBlock, HorizontalRule
)
from pyWebLayout.abstract.inline import LineBreak
class TestHTMLContentReader(unittest.TestCase):
"""Test cases for HTMLContentReader."""