diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-06-01 23:13:29 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-09-17 11:38:34 +0000 |
commit | 75fe790634b961f68319121c150e3fd7e981ff2e (patch) | |
tree | 4379a78931b50d5b2bac9c878ba0aaecb219e68b /tests | |
parent | functional_tests: python3 compatibility (diff) | |
download | monero-75fe790634b961f68319121c150e3fd7e981ff2e.tar.xz |
fix wallet python test when run with ctest
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/functional_tests/functional_tests_rpc.py | 1 | ||||
-rwxr-xr-x | tests/functional_tests/wallet.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/functional_tests/functional_tests_rpc.py b/tests/functional_tests/functional_tests_rpc.py index b0954b921..9043565c7 100755 --- a/tests/functional_tests/functional_tests_rpc.py +++ b/tests/functional_tests/functional_tests_rpc.py @@ -64,6 +64,7 @@ try: PYTHONPATH += srcdir + '/../../utils/python-rpc' os.environ['PYTHONPATH'] = PYTHONPATH os.environ['WALLET_DIRECTORY'] = WALLET_DIRECTORY + os.environ['PYTHONIOENCODING'] = 'utf-8' for i in range(len(command_lines)): #print('Running: ' + str(command_lines[i])) processes.append(subprocess.Popen(command_lines[i], stdout = outputs[i])) diff --git a/tests/functional_tests/wallet.py b/tests/functional_tests/wallet.py index ddf88f5ef..7e1a4f4c8 100755 --- a/tests/functional_tests/wallet.py +++ b/tests/functional_tests/wallet.py @@ -33,6 +33,7 @@ """ from __future__ import print_function +import sys import os import errno @@ -319,7 +320,7 @@ class WalletTest(): languages = res.languages languages_local = res.languages_local for language in languages + languages_local: - print('Creating ' + language + ' wallet') + sys.stdout.write('Creating ' + language + ' wallet\n') wallet.create_wallet(filename = '', language = language) res = wallet.query_key('mnemonic') wallet.close_wallet() |