#16239 closed Cleanup/optimization (fixed)
django.test.simple.py's __all__ includes inexistent "run_tests"
| Reported by: | 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)
Change History (6)
comment:1 by , 14 years ago
| Triage Stage: | Unreviewed → Accepted |
|---|---|
| Type: | Bug → Cleanup/optimization |
by , 14 years ago
| Attachment: | remove_run_tests-16239.diff added |
|---|
comment:2 by , 14 years ago
| Has patch: | set |
|---|---|
| Owner: | changed from to |
| Status: | new → assigned |
comment:3 by , 14 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
In [16396]: