diff --git a/tests/interfaces/openlp_core/ui/test_mainwindow.py b/tests/interfaces/openlp_core/ui/test_mainwindow.py index e1f63673a..857b31d4c 100644 --- a/tests/interfaces/openlp_core/ui/test_mainwindow.py +++ b/tests/interfaces/openlp_core/ui/test_mainwindow.py @@ -21,18 +21,20 @@ """ Package to test the openlp.core.ui.mainwindow package. """ -from unittest import TestCase +from unittest import TestCase, skipIf from unittest.mock import MagicMock, patch from PyQt5 import QtGui from openlp.core.state import State +from openlp.core.common import is_macosx from openlp.core.common.registry import Registry from openlp.core.lib.plugin import PluginStatus from openlp.core.ui.mainwindow import MainWindow from tests.helpers.testmixin import TestMixin +@skipIf(is_macosx(), 'Skip on macOS until we can figure out what the problem is or the tests are refactored') class TestMainWindow(TestCase, TestMixin): def setUp(self):