Opened 18 years ago
Closed 17 years ago
#4182 closed (invalid)
manage.py test AND --noreload
Reported by: | anonymous | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Testing framework | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Design decision needed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
manage.py test AND --noreload
When running tests, even with --noreload option, django still uses seperate process.
Hence, it is difficult to use debugger for test cases (manage.py test). It would be great
to make runserver and test to behave the same way.
Change History (2)
comment:1 by , 18 years ago
Component: | Core framework → Unit test system |
---|---|
Triage Stage: | Unreviewed → Design decision needed |
comment:2 by , 17 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Django's test framework doesn't spawn anything. It's a standard unittest.TextTestRunner, running in the main thread.