Changes between Initial Version and Version 1 of Ticket #16217
- Timestamp:
 - Jun 10, 2011, 1:03:46 PM (14 years ago)
 
Legend:
- Unmodified
 - Added
 - Removed
 - Modified
 
- 
      
Ticket #16217
- Property Resolution → duplicate
 - Property Status new → closed
 
 - 
      
Ticket #16217 – Description
initial v1 1 I have an application whose models module is a directory with models/__init__.py1 I have an application whose models module is a directory with `models/__init__.py` 2 2 3 3 That applications tests were mysteriously not being found or run when doing "./manage.py test". … … 11 11 }}} 12 12 13 Unfortunately, my app module file was models/__init__.pyc, so that code looked for the module within the models directory.13 Unfortunately, my app module file was `models/__init__.pyc`, so that code looked for the module within the models directory. 14 14 15 I don't understand the relationship between __import__and find_module well enough to know what the fix it.15 I don't understand the relationship between `__import__` and find_module well enough to know what the fix it.