From 042f5638bf3841f71abb7a05807bb055c3aa6439 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Thu, 31 Jan 2019 18:29:30 +0530 Subject: [PATCH] project tests: qt is available on the macOS CI --- run_project_tests.py | 4 ++++ 1 file changed, 4 insertions(+) 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