Opened 17 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 Simon G. <dev@…>, 17 years ago

Component: Core frameworkUnit test system
Triage Stage: UnreviewedDesign decision needed

comment:2 by Russell Keith-Magee, 17 years ago

Resolution: invalid
Status: newclosed

Django's test framework doesn't spawn anything. It's a standard unittest.TextTestRunner, running in the main thread.

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