Skip to content

Commit e3c6492

Browse files
lwassernamurphy
andcommitted
Update ci-tests-data/run-tests.md
Co-authored-by: Nick Murphy <[email protected]>
1 parent f5acc1d commit e3c6492

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci-tests-data/run-tests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,14 +135,14 @@ tests = ["pytest", "pytest-cov"]
135135

136136
If you have the above setup, then you can use `session.install(".[tests]")` to install your test dependencies.
137137
Notice that below one single nox session allows you to run
138-
your tests on 3 different Python environments (Python 3.9, 3.10 and 3.11).
138+
your tests on 3 different Python environments (Python 3.9, 3.10, 3.11, and 3.12).
139139

140140
```python
141141
import nox
142142

143143
# For this to run you will need to have python3.9, python3.10 and python3.11 installed on your computer. Otherwise nox will skip running tests for whatever versions are missing
144144

145-
@nox.session(python=["3.9", "3.10", "3.11"])
145+
@nox.session(python=["3.9", "3.10", "3.11", "3.12"])
146146
def test(session):
147147

148148
# install

0 commit comments

Comments
 (0)