File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,9 +62,9 @@ test-command = "pytest {project}/tests"
62
62
build-verbosity = 1
63
63
` ` `
64
64
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.
68
68
69
69
# # Making an SDist
70
70
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ def tests(session: nox.Session) -> None:
212
212
"""
213
213
Run the unit and regular tests.
214
214
"""
215
- session.install(".[test ]")
215
+ session.install(".[tests ]")
216
216
session.run("pytest", *session.posargs)
217
217
` ` `
218
218
<!-- prettier-ignore-end -->
You can’t perform that action at this time.
0 commit comments