Ticket #14274: test_warnings.diff

File test_warnings.diff, 790 bytes (added by Eric Holscher, 14 years ago)
  • docs/topics/testing.txt

    diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
    index 5c1933c..5dd3453 100644
    a b can press ``Ctrl-C`` a second time and the test run will halt immediately,  
    309309but not gracefully. No details of the tests run before the interruption will
    310310be reported, and any test databases created by the run will not be destroyed.
    311311
     312.. note::
     313    It is a good idea to run your application's tests with
     314    ``python -Wall manage.py test`` to catch deprecation
     315    warnings that might be in your code. This is useful before
     316    an upgrade, as well and catching places in your code that might
     317    have a better implementation.
     318
     319
    312320Running tests outside the test runner
    313321-------------------------------------
    314322
Back to Top