Skip to content

Commit a030be0

Browse files
committed
docs: Fix grammatical issues and improve clarity in pytest plugin docs
1 parent 9e99a67 commit a030be0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/pytest-plugin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ With libvcs's pytest plugin for [pytest], you can easily create Git, SVN, and Me
66

77
```{seealso} Are you using libvcs?
88
9-
Looking for more flexibility, correctness, or power? Need different defaults? [Connect with us] on GitHub. We'd love to hear about your use caseAPIs won't be stabilized until we're confident everything meets expectations.
9+
Looking for more flexibility, correctness, or power? Need different defaults? [Connect with us] on GitHub. We'd love to hear about your use case. Our APIs won't be stabilized until we're confident they meet all expectations.
1010
1111
[connect with us]: https://github.com/vcs-python/libvcs/discussions
1212
```
@@ -29,7 +29,7 @@ Pytest will automatically detect the plugin, and its fixtures will be available.
2929

3030
## Fixtures
3131

32-
This pytest plugin works by providing {ref}`pytest fixtures <pytest:fixtures-api>`. The plugin's fixtures ensure that a fresh Git, Subversion, or Mercurial repository is available for each test. It utilizes [session-scoped fixtures] to cache initial repositories, improving performance across tests.
32+
This pytest plugin works by providing {ref}`pytest fixtures <pytest:fixtures-api>`. The plugin's fixtures ensure that a fresh Git, Subversion, or Mercurial repository is available for each test. It utilizes [session-scoped fixtures] to cache the initial repositories, improving performance across tests.
3333

3434
[session-scoped fixtures]: https://docs.pytest.org/en/8.3.x/how-to/fixtures.html#fixture-scopes
3535

@@ -65,7 +65,7 @@ These ensure that repositories can be cloned and created without unnecessary war
6565

6666
To configure the above fixtures with `autouse=True`, add them to your `conftest.py` file or test file, depending on the desired scope.
6767

68-
_Why aren't these fixtures added automatically by the plugin?_ This design choice promotes explicitness, adhering to best practices for pytest plugins and Python packages.
68+
_Why aren't these fixtures added automatically by the plugin?_ This design choice promotes explicitness and adheres to best practices for pytest plugins and Python packages.
6969

7070
### Setting a Temporary Home Directory
7171

0 commit comments

Comments
 (0)