Print result of RPC call in test only when PYTHON_DEBUG is set

This commit is contained in:
Per Grön 2017-12-13 07:42:10 +00:00
parent 8993edfb77
commit d4ab94a6d9
1 changed files with 4 additions and 2 deletions

View File

@ -389,10 +389,12 @@ def wait_and_assert_operationid_status(node, myopid, in_status='success', in_err
elif status == "success":
txid = results[0]['result']['txid']
break
print('...returned status: {}'.format(status))
assert_equal(in_status, status)
if errormsg is not None:
assert(in_errormsg is not None)
assert_equal(in_errormsg in errormsg, True)
print('...returned error: {}'.format(errormsg))
if os.getenv("PYTHON_DEBUG", ""):
print('...returned status: {}'.format(status))
if errormsg is not None:
print('...returned error: {}'.format(errormsg))
return txid