Skip to content

Commit 0cef5df

Browse files
lwasserucodery
andauthored
Fix: guide review from @ucodery
Co-authored-by: Jeremy Paige <ucodery@gmail.com>
1 parent 9f75135 commit 0cef5df

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/run-tests.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -214,20 +214,20 @@ Above you create a nox session in the form of a function
214214
with a `@nox.session` decorator. Notice that within the decorator you declare the versions of python that you
215215
wish to run.
216216

217-
To run the above you'd use the command where `--session`. You may also see
218-
people using the shortcut for session `-s`. Your function above
217+
To run the above you'd execute the following command, specifying which session
218+
with `--session` (sometimes shortened to `-s`). Your function above
219219
is called test, therefore the session name is test.
220220

221221
```
222-
nox -s test
222+
nox --session test
223223
```
224224

225225
### Nox with conda / mamba
226226

227227
Below is an example for setting up nox to use mamba (or conda) for your
228228
environment manager.
229229
Note that unlike venv, conda can automatically install
230-
the various versions of Python that you need. You won't need to install all three Python versions if you use conda/mamba, like you do with `venv`.
230+
the various versions of Python that you need. You won't need to install all four Python versions if you use conda/mamba, like you do with `venv`.
231231

232232
```{note}
233233
For `conda` to work with `nox`, you will need to
@@ -257,5 +257,5 @@ def test_mamba(session):
257257
To run the above session you'd use:
258258

259259
```bash
260-
nox -s test_mamba
260+
nox --session test_mamba
261261
```

0 commit comments

Comments
 (0)