Skip to content

Commit 20777db

Browse files
committed
Add Python 3.14 testing to justfile
1 parent a699caa commit 20777db

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Typical workflow (changes that involve Rust):
9999
1. Make a change to Rust code.
100100
2. Run ``just compile-and-test``. This will compile the Rust code, then run Rust and Python tests in the default version.
101101

102-
There are also version-specific test commands (e.g. ``just test-3-13``) - run ``just help`` to see which ones.
102+
There are also version-specific test commands (e.g. ``just test-3-14``) - run ``just help`` to see which ones.
103103

104104
Working with documentation
105105
--------------------------

justfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ test-python:
3232

3333
# Runs tests under all supported Python versions, plus Rust.
3434
[group('testing')]
35-
test-all: test-python-3-9 test-python-3-10 test-python-3-11 test-python-3-12 test-python-3-13 test-rust
35+
test-all: test-python-3-9 test-python-3-10 test-python-3-11 test-python-3-12 test-python-3-13 test-python-3-14 test-rust
3636

3737
# Runs tests under Python 3.9.
3838
[group('testing')]
@@ -59,6 +59,11 @@ test-python-3-12:
5959
test-python-3-13:
6060
UV_PYTHON=3.13 just test-python
6161

62+
# Runs tests under Python 3.14.
63+
[group('testing')]
64+
test-python-3-14:
65+
UV_PYTHON=3.14 just test-python
66+
6267
# Format the Rust code.
6368
[group('formatting')]
6469
[working-directory: 'rust']

0 commit comments

Comments
 (0)