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 Tests.helper import skip_unless_feature
|
||||
|
||||
if sys.platform.startswith("win32") or sys.platform in {"ios", "android"}:
|
||||
pytest.skip(
|
||||
"Fuzzer doesn't run on Windows or mobile",
|
||||
allow_module_level=True,
|
||||
)
|
||||
if sys.platform.startswith("win32") or sys.platform == "ios":
|
||||
pytest.skip("Fuzzer doesn't run on Windows or iOS", allow_module_level=True)
|
||||
|
||||
libjpeg_turbo_version = features.version("libjpeg_turbo")
|
||||
if libjpeg_turbo_version is not None:
|
||||
|
|
|
@ -7,10 +7,7 @@ import sys
|
|||
import pytest
|
||||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
sys.platform in {"ios", "android"},
|
||||
reason="Not required on mobile",
|
||||
)
|
||||
@pytest.mark.skipif(sys.platform == "ios", reason="Not required on mobile")
|
||||
@pytest.mark.parametrize(
|
||||
"args, report",
|
||||
((["PIL"], False), (["PIL", "--report"], True), (["PIL.report"], True)),
|
||||
|
|
Loading…
Reference in New Issue
Block a user