We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d28e514 commit eb47194Copy full SHA for eb47194
1 file changed
tests/integration/test_relocatable_cores.py
@@ -3,6 +3,7 @@
3
import sys
4
from pathlib import Path
5
6
+import pytest
7
from pytest import LogCaptureFixture
8
9
from pystack.engine import CoreFileAnalyzer
@@ -17,6 +18,10 @@
17
18
TEST_MULTIPLE_THREADS_FILE = Path(__file__).parent / "multiple_thread_program.py"
19
20
21
+@pytest.mark.skipif(
22
+ sys.version_info >= (3, 15),
23
+ reason="PyInstaller does not support Python 3.15 yet",
24
+)
25
def test_single_thread_stack_for_relocated_core(
26
tmpdir: Path, caplog: LogCaptureFixture
27
) -> None:
@@ -25,7 +30,6 @@ def test_single_thread_stack_for_relocated_core(
30
that we can inspect and obtain all the information we need from the
31
frame stack, including the native frames by using symbols only.
32
"""
28
-
29
33
# GIVEN
34
35
target_bundle = Path(tmpdir / "bundle")
0 commit comments