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,
|
309 | 309 | but not gracefully. No details of the tests run before the interruption will |
310 | 310 | be reported, and any test databases created by the run will not be destroyed. |
311 | 311 | |
| 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 | |
312 | 320 | Running tests outside the test runner |
313 | 321 | ------------------------------------- |
314 | 322 | |