Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#16239 closed Cleanup/optimization (fixed)

django.test.simple.py's __all__ includes inexistent "run_tests"

Reported by: wojtek@… Owned by: teraom
Component: Testing framework Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

top level function "run_tests" doesn't exist anymore in simple.py yet is referenced in all

replace:
all = ('DjangoTestRunner', 'DjangoTestSuiteRunner', 'run_tests')

with
all = ('DjangoTestRunner', 'DjangoTestSuiteRunner')

Attachments (1)

remove_run_tests-16239.diff (512 bytes ) - added by teraom 13 years ago.

Download all attachments as: .zip

Change History (6)

comment:1 by Stephen Burrows, 13 years ago

Triage Stage: UnreviewedAccepted
Type: BugCleanup/optimization

by teraom, 13 years ago

Attachment: remove_run_tests-16239.diff added

comment:2 by teraom, 13 years ago

Has patch: set
Owner: changed from nobody to teraom
Status: newassigned

comment:3 by Jannis Leidel, 13 years ago

Resolution: fixed
Status: assignedclosed

In [16396]:

Fixed #16239 -- Removed stale entry in django.test.simple.all. Thanks, melinath.

comment:4 by Stephen Burrows, 13 years ago

Hmm... This actually wasn't me...

Version 0, edited 13 years ago by Stephen Burrows (next)

comment:5 by Jannis Leidel, 13 years ago

Yeah, my mistake, sorry teraom.

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