We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a52632 commit 33b9651Copy full SHA for 33b9651
tests/integration/tutorials/test_tutorials.py
@@ -6,6 +6,8 @@
6
import contextlib
7
from importlib.machinery import SourceFileLoader
8
from pathlib import Path
9
+import platform
10
+
11
import pytest
12
import arcade
13
@@ -34,6 +36,9 @@ def find_tutorials():
34
36
)
35
37
def test_tutorials(window_proxy, file_path, allow_stdout):
38
"""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
42
os.environ["ARCADE_TEST"] = "TRUE"
43
stdout = io.StringIO()
44
with contextlib.redirect_stdout(stdout):
0 commit comments