From 75dedf4acbdbb884ceb88ad2aa735d7a17635e99 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Mon, 16 Dec 2024 10:04:30 -0500 Subject: [PATCH] semantic newlines in `PRETTY_GOOD_PRACTICES.md` --- PRETTY_GOOD_PRACTICES.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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.