QA: Elements tests first

This commit is contained in:
Jorge Timón 2018-06-20 01:07:10 +02:00
parent c929443996
commit 22130f42f8
No known key found for this signature in database
GPG key ID: 8866C18EA1C944A2

View file

@ -99,7 +99,14 @@ if ENABLE_ZMQ:
raise raise
testScripts = [ testScripts = [
# Elements-specific tests first
'confidential_transactions.py',
'signed_blockchain.py',
'feature_blocksign.py', 'feature_blocksign.py',
# Elements' specially adapted tests second
'blockchain.py',
# longest test should go first, to favor running tests in parallel # longest test should go first, to favor running tests in parallel
'wallet-hd.py', 'wallet-hd.py',
#'walletbackup.py', #'walletbackup.py',
@ -143,7 +150,6 @@ testScripts = [
'signrawtransactions.py', 'signrawtransactions.py',
'nodehandling.py', 'nodehandling.py',
'decodescript.py', 'decodescript.py',
'blockchain.py',
#'disablewallet.py', #'disablewallet.py',
'keypool.py', 'keypool.py',
'p2p-mempool.py', 'p2p-mempool.py',
@ -151,7 +157,6 @@ testScripts = [
'invalidblockrequest.py', 'invalidblockrequest.py',
'invalidtxrequest.py', 'invalidtxrequest.py',
'rpc_getblockstats.py', 'rpc_getblockstats.py',
'confidential_transactions.py',
'preciousblock.py', 'preciousblock.py',
#'p2p-segwit.py', #'p2p-segwit.py',
#'importprunedfunds.py', #'importprunedfunds.py',
@ -165,7 +170,6 @@ testScripts = [
'rpcnamedargs.py', 'rpcnamedargs.py',
'listsinceblock.py', 'listsinceblock.py',
'p2p-leaktests.py', 'p2p-leaktests.py',
'signed_blockchain.py',
] ]
if ENABLE_ZMQ: if ENABLE_ZMQ:
testScripts.append('zmq_test.py') testScripts.append('zmq_test.py')