mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-27 16:39:49 +03:00
Removed Android
This commit is contained in:
parent
a7afc50363
commit
6ab8e77950
|
@ -10,11 +10,8 @@ import pytest
|
||||||
from PIL import Image, features
|
from PIL import Image, features
|
||||||
from Tests.helper import skip_unless_feature
|
from Tests.helper import skip_unless_feature
|
||||||
|
|
||||||
if sys.platform.startswith("win32") or sys.platform in {"ios", "android"}:
|
if sys.platform.startswith("win32") or sys.platform == "ios":
|
||||||
pytest.skip(
|
pytest.skip("Fuzzer doesn't run on Windows or iOS", allow_module_level=True)
|
||||||
"Fuzzer doesn't run on Windows or mobile",
|
|
||||||
allow_module_level=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
libjpeg_turbo_version = features.version("libjpeg_turbo")
|
libjpeg_turbo_version = features.version("libjpeg_turbo")
|
||||||
if libjpeg_turbo_version is not None:
|
if libjpeg_turbo_version is not None:
|
||||||
|
|
|
@ -7,10 +7,7 @@ import sys
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skipif(
|
@pytest.mark.skipif(sys.platform == "ios", reason="Not required on mobile")
|
||||||
sys.platform in {"ios", "android"},
|
|
||||||
reason="Not required on mobile",
|
|
||||||
)
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"args, report",
|
"args, report",
|
||||||
((["PIL"], False), (["PIL", "--report"], True), (["PIL.report"], True)),
|
((["PIL"], False), (["PIL", "--report"], True), (["PIL.report"], True)),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user