diff --git a/PRETTY_GOOD_PRACTICES.md b/PRETTY_GOOD_PRACTICES.md index e08c5f1d15ad..15ce8d5862cc 100644 --- a/PRETTY_GOOD_PRACTICES.md +++ b/PRETTY_GOOD_PRACTICES.md @@ -612,8 +612,10 @@ class SomeWallet: ## Tests -- Do not import `test_*` modules. Instead locate shared tooling in non-test files within the `tests/` directory or subdirectories. -- Do not import fixtures. Fixtures are shared by locating them in `conftest.py` files at whatever directory layer you want them to be recursively available from. +- Do not import `test_*` modules. + Instead locate shared tooling in non-test files within the `tests/` directory or subdirectories. +- Do not import fixtures. + Fixtures are shared by locating them in `conftest.py` files at whatever directory layer you want them to be recursively available from. - Do not use test classes. `unittest` requires that tests be held in a class. pytest does not.