Fix -KeyError: 'VERBOSE'- exception in tests/runtests.py

This commit is contained in:
Marco Castelluccio 2015-06-06 00:41:17 +02:00
Родитель 8d8b0ac27d
Коммит 182755250d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -70,7 +70,7 @@ def run_test(script_path):
global exit_code
args = ['casperjs', '--engine=slimerjs']
if os.environ['VERBOSE'] != '0':
if 'VERBOSE' in os.environ and os.environ['VERBOSE'] != '0':
args.append('--log-level=debug')
args.extend(['test', script_path])