diff options
author | 2025-10-09 20:42:30 +0100 | |
---|---|---|
committer | 2025-10-09 20:43:15 +0100 | |
commit | 39620bce376483ede99663b9643c35a7e10ba28c (patch) | |
tree | 0db9e85d484789b1f5777a01445c3a4f7b5d1975 | |
parent | Update Python versions, add 3.14t, remove 3.13t and default to 3.14 (diff) |
Update integration tests accordingly for new defaults
-rw-r--r-- | tests/test_integration.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_integration.py b/tests/test_integration.py index d601a64..b3c1707 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -61,13 +61,13 @@ class IntegrationTests(unittest.TestCase): cases = [ ( get_python_version_body, - "3.13\n", + "3.14\n", "test default executable is used when executable_path not specified", ), ( get_python_version_body - | {"executable_path": "/snekbin/python/3.13/bin/python"}, - "3.13\n", + | {"executable_path": "/snekbin/python/3.14/bin/python"}, + "3.14\n", "test default executable is used when explicitly set", ), ( @@ -90,8 +90,8 @@ class IntegrationTests(unittest.TestCase): "input": "import sysconfig; print(sysconfig.get_config_var('Py_GIL_DISABLED'))" } cases = [ - ("3.13", "0\n"), - ("3.13t", "1\n"), + ("3.14", "0\n"), + ("3.14t", "1\n"), ] for version, expected in cases: with self.subTest(version=version, expected=expected): |