> On 26. May 2019, at 11:57, Nejc Zupan <[email protected]> wrote: > > And I’m glad I did it. The codebase of the new project (while ~4x smaller > than the old) is > vastly more readable and navigate-able. The only drawback that I found so far > is that it is a bit harder to > ask my editor, for example, “I forgot how to build an SQLAlchemy query to do > X in tests, find me all tests that do it” > because I I’ll get non-tests code in my “find in all files” results. This is > a super minor drawback. Benefits far outweigh it.
FWIW I made a similar experience. I’m still keeping tests outside, but I’ve started putting separate features into separate sub-packages and it made my maintenance experience much more pleasant thanks to the locality of common contexts. As for tests, I just mirror the structure in my global tests directory. That’s probably just a matter of taste. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pylons-discuss/AB4CF5F3-C2FE-49CB-967B-BD27DABBD7F3%40ox.cx. For more options, visit https://groups.google.com/d/optout.
