Opened 16 years ago

Closed 16 years ago

#7134 closed (duplicate)

TestCase class hardcodes verbosity

Reported by: emperorcezar Owned by: nobody
Component: Testing framework Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In the TestCase class django.test.testcases the run method on TestCase hardcodes the verbosity for loading a fixture to 0. This creates complications with loading a tests fixtures if there is an error E.g. Can't find the fixture.

This is a bug because the verbosity setting for the test run isn't passed, so if someone wants to check if their fixture loaded correctly, they have to add it to their tests, or use an alternate TestCase class.

Change History (1)

comment:1 by Russell Keith-Magee, 16 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #4371.

Note: See TracTickets for help on using tickets.
Back to Top