We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eddd28b commit 6bb044bCopy full SHA for 6bb044b
tests/brain/test_qt.py
@@ -8,13 +8,16 @@
8
9
from astroid import Uninferable, extract_node
10
from astroid.bases import UnboundMethod
11
+from astroid.const import PY312_PLUS
12
from astroid.manager import AstroidManager
13
from astroid.nodes import FunctionDef
14
15
HAS_PYQT6 = find_spec("PyQt6")
16
17
18
@pytest.mark.skipif(HAS_PYQT6 is None, reason="These tests require the PyQt6 library.")
19
+# TODO: enable for Python 3.12 as soon as PyQt6 release is compatible
20
+@pytest.mark.skipif(PY312_PLUS, reason="This test was segfaulting with Python 3.12.")
21
class TestBrainQt:
22
AstroidManager.brain["extension_package_whitelist"] = {"PyQt6"}
23
0 commit comments