aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_integration.py
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2025-05-22 21:55:36 +0100
committerGravatar GitHub <[email protected]>2025-05-22 21:55:36 +0100
commitc825ae4e36f5380c9fca325a99884513c8c701cc (patch)
tree20c13e7c93fbbe8d8f83b78196527e617345bd3c /tests/test_integration.py
parentBump SciPy in eval deps to get Python 3.13 support (#235) (diff)
parentOnly test on ubuntu-latest (diff)
Python 3.14 (#236)
* Consistent capitalisation in dockerfile * Bump 3.13 to 3.13.2 and make the default 3.13.3 has a bug with tests. This is fixed on the 3.13 dev branch, so will likely be part of 3.13.4 See this commit for more info https://github.com/python/cpython/commit/cc39b19f0fca8db0f881ecaf02f88d72d9f93776 * Remove 3.12 in favour of 3.14-dev * Bump numpy version installed in dev to one that works for 3.13 * Bump eval deps to latest versions This commit also updates which dependencies are installed in each verison of Python, according to what works where. * update tests to use new default python version * Replace deprecated ubuntu 20.04 CI runner with 24.04 * Only test on ubuntu-latest We previously used a matrixc to test cgroups v1 & v2. Now that ubuntu 20.04 is no longer supported by GitHub, we not longer have access to a runner with v1 cgroups.
Diffstat (limited to 'tests/test_integration.py')
-rw-r--r--tests/test_integration.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_integration.py b/tests/test_integration.py
index ed44d86..d601a64 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.12\n",
+ "3.13\n",
"test default executable is used when executable_path not specified",
),
(
get_python_version_body
- | {"executable_path": "/snekbin/python/3.12/bin/python"},
- "3.12\n",
+ | {"executable_path": "/snekbin/python/3.13/bin/python"},
+ "3.13\n",
"test default executable is used when explicitly set",
),
(