Skip to content

Commit

Permalink
Don't run cpp/gcc-needing tests on Darwin: not all Macs have the tools
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed Oct 29, 2021
1 parent 268067b commit f19cd14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

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():
Expand Down

0 comments on commit f19cd14

Please sign in to comment.