Glad you’re finding the book useful. I’ll split up my reply into separate posts to make them easier to digest.
Your suspicion is correct. I would recommend keeping unit tests close to the code they are testing. In your scenario, that would mean putting unit tests with each module. For example, part of your directory structure would then look something like this:
Note that the above recommendation is for unit tests. For integration tests that span across modules, putting those under a top level tests directory like you’ve done would still be appropriate.