Skip to content

Commit

Permalink
test_main - skip texture2d & sprite on Darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
K0lb3 committed Oct 21, 2024
1 parent 5686079 commit 3d3f6b7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import io
import os
import platform

from PIL import Image

Expand Down Expand Up @@ -60,6 +61,11 @@ def test_sprite():
obj.read().image.save(io.BytesIO(), format="PNG")


if platform.system() == "Darwin":
# crunch issue on macos leading to segfault
del test_texture2d
del test_sprite

# def test_audioclip():
# # as not platforms are supported by FMOD
# # we have to check if the platform is supported first
Expand Down

0 comments on commit 3d3f6b7

Please sign in to comment.