aboutsummaryrefslogtreecommitdiff
path: root/qa/pull-tester/rpc-tests.py
diff options
context:
space:
mode:
authorPatrick Lodder <[email protected]>2020-07-22 12:39:02 +0200
committerPatrick Lodder <[email protected]>2020-07-22 13:46:52 +0200
commit294d408d70ed8b79e1d4a0e923f2095b28d73af2 (patch)
tree52866fa9767c88f5c5bbd8ae12f6985dd0a6d24a /qa/pull-tester/rpc-tests.py
parentFix ltc_scrypt dependency for RPC tests (diff)
downloaddiscoin-294d408d70ed8b79e1d4a0e923f2095b28d73af2.tar.xz
discoin-294d408d70ed8b79e1d4a0e923f2095b28d73af2.zip
pull-tester: don't hard depend on python 3.6
every script depends on "python3" not "python3.6"
Diffstat (limited to 'qa/pull-tester/rpc-tests.py')
-rwxr-xr-xqa/pull-tester/rpc-tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/pull-tester/rpc-tests.py b/qa/pull-tester/rpc-tests.py
index 797e876f7..e278b7251 100755
--- a/qa/pull-tester/rpc-tests.py
+++ b/qa/pull-tester/rpc-tests.py
@@ -281,7 +281,7 @@ class RPCTestHandler:
log_stderr = tempfile.SpooledTemporaryFile(max_size=2**16)
self.jobs.append((t,
time.time(),
- subprocess.Popen(['python3.6']+(RPC_TESTS_DIR + t).split() + self.flags + port_seed,
+ subprocess.Popen(['python3']+(RPC_TESTS_DIR + t).split() + self.flags + port_seed,
universal_newlines=True,
stdout=log_stdout,
stderr=log_stderr),