From d80e748f5d269ff768c03ad76b42c1a8bea7c948 Mon Sep 17 00:00:00 2001 From: Saul Cooperman Date: Sun, 22 Feb 2026 16:25:00 +0000 Subject: [PATCH] Remove stale test skipping Remove test skipping in test_relocatable_cores.py. PyInstaller now additionally supports Python 3.13/3.14. --- tests/integration/test_relocatable_cores.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/integration/test_relocatable_cores.py b/tests/integration/test_relocatable_cores.py index 4fc25d63..d4a1d768 100644 --- a/tests/integration/test_relocatable_cores.py +++ b/tests/integration/test_relocatable_cores.py @@ -3,7 +3,6 @@ import sys from pathlib import Path -import pytest from pytest import LogCaptureFixture from pystack.engine import CoreFileAnalyzer @@ -18,10 +17,6 @@ TEST_MULTIPLE_THREADS_FILE = Path(__file__).parent / "multiple_thread_program.py" -@pytest.mark.skipif( - sys.version_info > (3, 13), - reason="PyInstaller doesn't support Python 3.13 yet", -) def test_single_thread_stack_for_relocated_core( tmpdir: Path, caplog: LogCaptureFixture ) -> None: