Skip to content

Commit

Permalink
semantic newlines in PRETTY_GOOD_PRACTICES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Dec 16, 2024
1 parent a12df36 commit 75dedf4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions PRETTY_GOOD_PRACTICES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 75dedf4

Please sign in to comment.