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 10bf421 commit 01e9fc5Copy full SHA for 01e9fc5
tests/test_unicode.py
@@ -2,12 +2,18 @@
2
import pytest
3
4
def test_Unicodes_init0():
5
+ if sys.platform.startswith("win"):
6
+ pytest.skip("Known not to work; To be investigated.")
7
assert isinstance(skia.Unicode(), skia.Unicode)
8
9
# recommended alias (upstream):
10
def test_Unicodes_init1():
11
12
13
assert isinstance(skia.Unicodes.ICU.Make(), skia.Unicode)
14
15
# Canonical
16
def test_Unicodes_init2():
17
18
19
assert isinstance(skia.Unicode.ICU_Make(), skia.Unicode)
0 commit comments