From b1a76bfb847713e3f72f3867f75d65abcc71420d Mon Sep 17 00:00:00 2001 From: Spacetown <40258682+spacetown@users.noreply.github.com> Date: Sun, 3 Mar 2024 17:28:25 +0100 Subject: [PATCH] Activate all tests for MacOs --- tests/test_gcovr.py | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/tests/test_gcovr.py b/tests/test_gcovr.py index 929dd4ea75..cfab0cbb76 100644 --- a/tests/test_gcovr.py +++ b/tests/test_gcovr.py @@ -348,34 +348,6 @@ def pytest_generate_tests(metafunc): name == "html-source-encoding-cp1252" and IS_CLANG, reason="clang doesn't understand -finput-charset=...", ), - pytest.mark.xfail( - name - in [ - "excl-branch", - "exclude-throw-branches", - "html-themes", - "html-themes-github", - ] - and IS_MACOS, - reason="On MacOS the constructor is called twice", - ), - pytest.mark.xfail( - name == "noncode" and IS_MACOS, - reason="On MacOS the there are other branches", - ), - pytest.mark.xfail( - name == "decisions" - and (IS_CLANG and CC_REFERENCE_VERSION in [14, 15] and IS_MACOS), - reason="On MacOS with clang 14 and 15 the file decision/switch_test.h throws compiler errors", - ), - pytest.mark.xfail( - name in ["decisions-neg-delta"] and IS_MACOS, - reason="On MacOS there is no branch for std::vector", - ), - pytest.mark.xfail( - name in ["excl-line-branch"] and IS_MACOS, - reason="On MacOS there are different number of branches generated", - ), pytest.mark.xfail( name in ["wrong-casing"] and not IS_WINDOWS, reason="Only windows has a case insensitive file system",