Adding -s to the pdb argument for fab test

This commit is contained in:
Dave Dash 2010-02-16 16:09:39 -08:00
Родитель 4a33fc0574
Коммит dd04718f61
1 изменённых файлов: 1 добавлений и 1 удалений

2
fabfile.py поставляемый
Просмотреть файл

@ -21,6 +21,6 @@ def test(module=None, pdb=False):
cmd += " --noinput --logging-clear-handlers"
if pdb:
cmd += ' --pdb --pdb-failures'
cmd += ' --pdb --pdb-failures -s'
local(cmd, capture=False)