From f19cd1412849aaf8759d8db8199ddd66ac789e87 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Fri, 29 Oct 2021 10:23:28 -0700 Subject: Don't run cpp/gcc-needing tests on Darwin: not all Macs have the tools --- tests/test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_util.py b/tests/test_util.py index 435962d..38dfdf5 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -15,7 +15,7 @@ import sys def cpp_supported(): """Is cpp (the C preprocessor) supported as a native command?""" - return platform.system() == 'Linux' or platform.system() == 'Darwin' + return platform.system() == 'Linux' def cpp_path(): -- cgit v1.2.1