Ticket #14274: 14274.diff

File 14274.diff, 744 bytes (added by Tim Graham, 14 years ago)

fix grammar issue in initial patch

  • docs/topics/testing.txt

     
    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 to catch places in your code that might
     317    have a better implementation.
     318
     319
    312320Running tests outside the test runner
    313321-------------------------------------
    314322
Back to Top