diff options
| author | Xavier Ordoquy | 2015-01-21 19:26:57 +0100 | 
|---|---|---|
| committer | Xavier Ordoquy | 2015-01-21 19:26:57 +0100 | 
| commit | a7567efa8d6fd008ba0a48f0e8fa7028703af386 (patch) | |
| tree | 26f592169e60b780893dc00b5c2e435ea07e4138 | |
| parent | 4cf03e30ff765dda2899048725da4d85ebd8af52 (diff) | |
| download | django-rest-framework-a7567efa8d6fd008ba0a48f0e8fa7028703af386.tar.bz2 | |
Use compact traceback for errors reporting.
| -rwxr-xr-x | runtests.py | 4 | 
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'] | 
