Skip to content

Commit 7fa2ccd

Browse files
style: pre-commit fixes
1 parent ba30e55 commit 7fa2ccd

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docs/pages/principles/testing.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -395,15 +395,14 @@ total = numeric_sum(some_numeric_values)
395395

396396
We recommend using Pytest for running tests in your development environments. To
397397
run unit tests in your source folder, from your package root, use
398-
`pytest {path/to/source}`.
399-
To run tests from an installed package (outside of
398+
`pytest {path/to/source}`. To run tests from an installed package (outside of
400399
your source repository), use `pytest --pyargs {package name}`.
401400

402-
You can set the default test path in `pyproject.toml`, see:
403-
[Configuring pytest]({% link pages/tutorials/test.md %}#configuring-pytest)
404-
405-
We recommend configuring pytest to run ONLY your fastest, least demanding test suite by default.
401+
You can set the default test path in `pyproject.toml`, see: [Configuring
402+
pytest]({% link pages/tutorials/test.md %}#configuring-pytest)
406403

404+
We recommend configuring pytest to run ONLY your fastest, least demanding test
405+
suite by default.
407406

408407
#### Mocking and Patching to Isolate the code under test
409408

0 commit comments

Comments
 (0)