in django 1.6, I have a commands for make analysis over the database, with a set of functions.
├── management
│ ├── __init__.py
│ └── commands
│ ├── __init__.py
│ ├── analysis.py
I like break the analysis.py in a set of files (maybe a module ...). what is the correct directory structure for a module use for a django command ?
maybe like this ... ?
├── management
│ ├── __init__.py
│ ├── analysis_module
│ └── commands
│ ├── __init__.py
│ ├── analysis.py
and the test for the analysis_module
, what is the correct ubication for the test of analysis_module
?