Skip to content

Commit

Permalink
Skip fuzzer tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
wiredfool committed Mar 14, 2021
1 parent 8b06fec commit b1cf422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/oss-fuzz/test_fuzzers.py
Expand Up @@ -5,7 +5,7 @@

from PIL import Image


@pytest.mark.skipif(is_win32(), reason="Fuzzer is linux only")
@pytest.mark.parametrize(
"path",
subprocess.check_output("find Tests/images -type f", shell=True).split(b"\n"),
Expand All @@ -27,7 +27,7 @@ def test_fuzz_images(path):
# Known Image.* exceptions
assert True


@pytest.mark.skipif(is_win32(), reason="Fuzzer is linux only")
@pytest.mark.parametrize(
"path", subprocess.check_output("find Tests/fonts -type f", shell=True).split(b"\n")
)
Expand Down

0 comments on commit b1cf422

Please sign in to comment.