Skip to content

Commit 24ee6e2

Browse files
ksuessstevepiercy
andauthored
Apply suggestions from code review
Co-authored-by: Steve Piercy <[email protected]>
1 parent 040ef63 commit 24ee6e2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/contributing/core/index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ On Linux, [GNU Compiler Collection (GCC)](https://gcc.gnu.org/) is a common opti
7676

7777
The tool that installs Plone core is `buildout.coredev`.
7878

79-
The current default and development branch of `buildout.coredev` is `{PLONE_BACKEND_MINOR_VERSION}`
79+
The current default and development branch of `buildout.coredev` is `{PLONE_BACKEND_MINOR_VERSION}`.
8080
Older versions are named according to their `major.minor` version.
8181
Its versions align with Plone's `major.minor` versions.
8282

@@ -190,7 +190,9 @@ To run tests for the specific package that you modified, use `.venv/bin/pytest`
190190
If any test fails, do not commit and push the changes.
191191
Instead write a test that passes.
192192

193-
Following [How to invoke pytest](https://docs.pytest.org/en/stable/how-to/usage.html), you can run all tests for the package you're developing, only unit tests, or only acceptance tests, using the pytest keyword option `-k` followed by a string expression in double quotes, as shown below.
193+
Following [How to invoke pytest](https://docs.pytest.org/en/stable/how-to/usage.html), you can run tests for the package you're developing.
194+
Using the pytest keyword option `-k`, followed by a string expression in double quotes, you can select only unit tests or only acceptance tests to run as shown below.
195+
With no options, pytest will run all tests.
194196

195197
```shell
196198
.venv/bin/pytest src/plone.app.multilingual -v -k "not robot"

0 commit comments

Comments
 (0)