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 fe0b439 commit 10bf421Copy full SHA for 10bf421
tests/test_paragraph.py
@@ -1,5 +1,6 @@
1
import skia
2
import pytest
3
+import sys
4
5
def test_FontCollection_init0():
6
assert isinstance(skia.textlayout.FontCollection(), skia.textlayout_FontCollection)
@@ -20,6 +21,8 @@ def test_ParagraphBuilder_init0(paragraph_builder):
20
21
assert isinstance(paragraph_builder, skia.textlayout_ParagraphBuilder)
22
23
def test_Paragraph_init0(paragraph_builder):
24
+ if sys.platform.startswith("win"):
25
+ pytest.skip("Known not to work; To be investigated.")
26
paragraph_builder.addText("")
27
paragraph = paragraph_builder.Build()
28
assert isinstance(paragraph, skia.textlayout_Paragraph)
0 commit comments