Skip to content

Commit f662ecd

Browse files
style: pre-commit fixes
1 parent bde6888 commit f662ecd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/pages/guides/gha_wheels.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ test-command = "pytest {project}/tests"
6262
build-verbosity = 1
6363
```
6464

65-
The `test-extras` will cause the pip install to use `[tests]`. The `test-command`
66-
will use pytest to run your tests. You can also set the build verbosity (`-v` in
67-
pip) if you want to.
65+
The `test-extras` will cause the pip install to use `[tests]`. The
66+
`test-command` will use pytest to run your tests. You can also set the build
67+
verbosity (`-v` in pip) if you want to.
6868

6969
## Making an SDist
7070

docs/pages/guides/tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def tests(session: nox.Session) -> None:
212212
"""
213213
Run the unit and regular tests.
214214
"""
215-
session.install(".[test]")
215+
session.install(".[tests]")
216216
session.run("pytest", *session.posargs)
217217
```
218218
<!-- prettier-ignore-end -->

0 commit comments

Comments
 (0)