Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tests] Run tiertwo and sapling functional tests by default #2832

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion test/functional/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,9 @@
'rpc_users.py',
'wallet_hd.py', # no HD tests for pre-HD wallets
'wallet_upgrade.py', # can't upgrade to pre-HD wallet
'sapling_supply.py',
'sapling_wallet_persistence.py',
'sapling_wallet_send.py',
'sapling_wallet.py',
'sapling_changeaddresses.py',
'sapling_key_import_export.py',
Expand Down Expand Up @@ -345,7 +347,7 @@ def main():
if len(test_list) == 0:
# No individual tests (or sub-list) have been specified.
# Run all base tests, and optionally run extended tests.
test_list = BASE_SCRIPTS
test_list = TIERTWO_SCRIPTS + SAPLING_SCRIPTS + BASE_SCRIPTS
if args.extended:
# place the EXTENDED_SCRIPTS first since the three longest ones
# are there and the list is shorter
Expand Down