Skip to content

Commit eb47194

Browse files
hasweegodlygeek
authored andcommitted
skip test for python3.15 due to PyInstaller support
Signed-off-by: haswee <hasweebanoth@gmail.com>
1 parent d28e514 commit eb47194

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tests/integration/test_relocatable_cores.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import sys
44
from pathlib import Path
55

6+
import pytest
67
from pytest import LogCaptureFixture
78

89
from pystack.engine import CoreFileAnalyzer
@@ -17,6 +18,10 @@
1718
TEST_MULTIPLE_THREADS_FILE = Path(__file__).parent / "multiple_thread_program.py"
1819

1920

21+
@pytest.mark.skipif(
22+
sys.version_info >= (3, 15),
23+
reason="PyInstaller does not support Python 3.15 yet",
24+
)
2025
def test_single_thread_stack_for_relocated_core(
2126
tmpdir: Path, caplog: LogCaptureFixture
2227
) -> None:
@@ -25,7 +30,6 @@ def test_single_thread_stack_for_relocated_core(
2530
that we can inspect and obtain all the information we need from the
2631
frame stack, including the native frames by using symbols only.
2732
"""
28-
2933
# GIVEN
3034

3135
target_bundle = Path(tmpdir / "bundle")

0 commit comments

Comments
 (0)