diff --git a/run_project_tests.py b/run_project_tests.py index 4c6ca3b01..d10f3a207 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -496,6 +496,10 @@ def skippable(suite, test): return 'BOOST_ROOT' not in os.environ return False + # Qt is provided on macOS by Homebrew + if test.endswith('4 qt') and mesonlib.is_osx(): + return False + # Other framework tests are allowed to be skipped on other platforms return True