Changes between Initial Version and Version 9 of Ticket #21739
- Timestamp:
- Feb 18, 2014, 5:03:56 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21739
- Property Triage Stage Unreviewed → Accepted
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #21739 – Description
initial v9 6 6 One 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. 7 7 I was looking at the code of /django/test/testcase.py and I found this: 8 8 {{{ 9 9 call_command('loaddata', *self.fixtures, 10 10 **{'verbosity': 0, 'database': db_name, 'skip_validation': True}) 11 11 }}} 12 12 So, verbosity is 0, hardcoded. 13 13 Shouldn't inherit the verbosity from the test command in manage.py somehow?