ubsuny / CP1-24-HW3

Homework 3 template for CP1-24
1 stars 16 forks source link

Unit Tests and Module Organization #15

Closed jkblc closed 1 week ago

jkblc commented 1 week ago

How should our module be organized. Should we have a separate directory for each module with different files for the function and the unit tests? That is my understanding according to python best practices.

avgagliardo commented 1 week ago

For now, I have been developing my module in its own directory which contains the python file(s), documentation, and unit tests.

If we want to consolidate things like the documentation later on, that should be easy to do too.

laserlab commented 1 week ago

separate folders are fine, but then we have to enforce it so we don’t mix

jkblc commented 1 week ago

Sounds good