Skip to content

Commit 33b9651

Browse files
authored
Skip compute shader tutorial on darwin (#2542)
1 parent 6a52632 commit 33b9651

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/integration/tutorials/test_tutorials.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
import contextlib
77
from importlib.machinery import SourceFileLoader
88
from pathlib import Path
9+
import platform
10+
911
import pytest
1012
import arcade
1113

@@ -34,6 +36,9 @@ def find_tutorials():
3436
)
3537
def test_tutorials(window_proxy, file_path, allow_stdout):
3638
"""Run all tutorials"""
39+
if "compute_shader" in str(file_path) and platform.system() == "darwin":
40+
raise pytest.skip(f"compute_shader tutorial not working on OS X")
41+
3742
os.environ["ARCADE_TEST"] = "TRUE"
3843
stdout = io.StringIO()
3944
with contextlib.redirect_stdout(stdout):

0 commit comments

Comments
 (0)