aboutsummaryrefslogtreecommitdiff
path: root/tests/functional_tests
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-03-22 15:25:33 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-03-23 18:59:47 +0000
commitc7bfdc356618fd1ccbe0f87fd5009e944cd12e50 (patch)
tree2f1154b5560f096dab5f2bbf531d83362eb8df1c /tests/functional_tests
parentfunctional_tests: move RPC API to utils, it is not test specific (diff)
downloadmonero-c7bfdc356618fd1ccbe0f87fd5009e944cd12e50.tar.xz
python-rpc: add console.py
It allows one to connect to a running daemon or wallet, and use its RPC API from python. Usage: python -i console.py <port> It will detect whether it's talking to a daemon or wallet and initialize itself accordingly.
Diffstat (limited to 'tests/functional_tests')
-rwxr-xr-xtests/functional_tests/functional_tests_rpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional_tests/functional_tests_rpc.py b/tests/functional_tests/functional_tests_rpc.py
index 606b19e45..f2fef7e95 100755
--- a/tests/functional_tests/functional_tests_rpc.py
+++ b/tests/functional_tests/functional_tests_rpc.py
@@ -60,7 +60,7 @@ try:
PYTHONPATH = os.environ['PYTHONPATH'] if 'PYTHONPATH' in os.environ else ''
if len(PYTHONPATH) > 0:
PYTHONPATH += ':'
- PYTHONPATH += '../../utils/python-rpc'
+ PYTHONPATH += srcdir + '/../../utils/python-rpc'
os.environ['PYTHONPATH'] = PYTHONPATH
for i in range(len(command_lines)):
#print('Running: ' + str(command_lines[i]))