Use compact traceback for errors reporting.

This commit is contained in:
Xavier Ordoquy 2015-01-21 19:26:57 +01:00
parent 4cf03e30ff
commit a7567efa8d

View File

@ -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']