Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 89db906

Browse files
committed
fix resolve system test issue
1 parent 9eaa43a commit 89db906

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,12 @@ Running System Tests
143143
$ nox -s system
144144

145145
# Run a single system test
146-
$ nox -s system-3.12 -- -k <name of test>
146+
$ nox -s system-3.13 -- -k <name of test>
147147

148148

149149
.. note::
150150

151-
System tests are only configured to run under Python 3.12.
151+
System tests are only configured to run under Python 3.13.
152152
For expediency, we do not run them in older versions of Python 3.
153153

154154
This alone will not run the tests. You'll need to change some local

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
UNIT_TEST_EXTRAS: List[str] = []
6161
UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}
6262

63-
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.12"]
63+
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.13"]
6464
SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [
6565
"mock",
6666
"pytest",

0 commit comments

Comments
 (0)