summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
authorDaniel Chimeno <daniel@chimeno.me>2018-03-28 19:25:03 +0200
committerTim Graham <timograham@gmail.com>2018-03-28 13:25:03 -0400
commitfbb93581498070272dd67c6e0afbca13cb89d5f3 (patch)
tree0cdd300c628bfd76b1e76c253b3654e58dbe1391 /docs/topics/testing
parent2156565b5bac2e6f503ad4841e2b6ed44e4de656 (diff)
Replaced 'python -Wall' with 'python -Wa'.
Diffstat (limited to 'docs/topics/testing')
-rw-r--r--docs/topics/testing/overview.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing/overview.txt b/docs/topics/testing/overview.txt
index 357ec9d790..12efb381c7 100644
--- a/docs/topics/testing/overview.txt
+++ b/docs/topics/testing/overview.txt
@@ -128,7 +128,7 @@ be reported, and any test databases created by the run will not be destroyed.
.. admonition:: Test with warnings enabled
It's a good idea to run your tests with Python warnings enabled:
- ``python -Wall manage.py test``. The ``-Wall`` flag tells Python to
+ ``python -Wa manage.py test``. The ``-Wa`` flag tells Python to
display deprecation warnings. Django, like many other Python libraries,
uses these warnings to flag when features are going away. It also might
flag areas in your code that aren't strictly wrong but could benefit