From 860748010f049ce187bec7043108472e10abcec6 Mon Sep 17 00:00:00 2001 From: Daniel Gerlanc Date: Tue, 21 Feb 2023 19:24:09 -0500 Subject: [PATCH] Skip test_cache_race_condition on macOS Resolves: #1314 --- tests/link/c/test_cmodule.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/link/c/test_cmodule.py b/tests/link/c/test_cmodule.py index 5187530e65..dd6e3f3b1f 100644 --- a/tests/link/c/test_cmodule.py +++ b/tests/link/c/test_cmodule.py @@ -7,6 +7,7 @@ import logging import multiprocessing import os +import sys import tempfile from unittest.mock import patch @@ -221,6 +222,7 @@ def test_linking_patch(listdir_mock, platform): ] +@pytest.mark.skipif(sys.platform == "darwin", reason="Fails on MacOS") def test_cache_race_condition(): with tempfile.TemporaryDirectory() as dir_name: