Changes between Initial Version and Version 9 of Ticket #21739


Ignore:
Timestamp:
Feb 18, 2014, 5:03:56 AM (10 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21739

    • Property Triage Stage UnreviewedAccepted
    • Property Owner changed from nobody to Olek
    • Property Status newassigned
  • Ticket #21739 – Description

    initial v9  
    66One of my tests has a fixture and it seems that there is an issue with that, because no data is loaded and it's failing silently.
    77I was looking at the code of /django/test/testcase.py and I found this:
    8 
     8{{{
    99                call_command('loaddata', *self.fixtures,
    1010                             **{'verbosity': 0, 'database': db_name, 'skip_validation': True})
    11 
     11}}}
    1212So, verbosity is 0, hardcoded.
    1313Shouldn't inherit the verbosity from the test command in manage.py somehow?
Back to Top