From 3a8a1e47ef02067b0b805b2077eff2360eb33c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Eertmans?= Date: Tue, 10 Dec 2024 18:10:42 +0100 Subject: [PATCH] fix(tests) --- tests/test_checkhealth.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_checkhealth.py b/tests/test_checkhealth.py index 39c8f59e..b653727e 100644 --- a/tests/test_checkhealth.py +++ b/tests/test_checkhealth.py @@ -39,6 +39,9 @@ def test_checkhealth( del sys.modules["qtpy"] # Avoid using cached module with missing_modules(*names): + if not manimlib_missing and not MANIMGL_NOT_INSTALLED and sys.version_info < (3, 10): + return pytest.skip("See https://github.com/3b1b/manim/issues/2263") + result = runner.invoke( checkhealth, env={"QT_API": "pyqt6", "FORCE_QT_API": "1"},