aboutsummaryrefslogtreecommitdiffstats
path: root/runtests.py
diff options
context:
space:
mode:
authorXavier Ordoquy2015-01-21 19:26:57 +0100
committerXavier Ordoquy2015-01-21 19:26:57 +0100
commita7567efa8d6fd008ba0a48f0e8fa7028703af386 (patch)
tree26f592169e60b780893dc00b5c2e435ea07e4138 /runtests.py
parent4cf03e30ff765dda2899048725da4d85ebd8af52 (diff)
downloaddjango-rest-framework-a7567efa8d6fd008ba0a48f0e8fa7028703af386.tar.bz2
Use compact traceback for errors reporting.
Diffstat (limited to 'runtests.py')
-rwxr-xr-xruntests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtests.py b/runtests.py
index abf15a62..0008bfae 100755
--- a/runtests.py
+++ b/runtests.py
@@ -8,8 +8,8 @@ import subprocess
PYTEST_ARGS = {
- 'default': ['tests'],
- 'fast': ['tests', '-q'],
+ 'default': ['tests', '--tb=short'],
+ 'fast': ['tests', '--tb=short', '-q'],
}
FLAKE8_ARGS = ['rest_framework', 'tests', '--ignore=E501']