mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
Merge #9766: Add --exclude option to rpc-tests.py
c578408
Add exclude option to rpc-tests.py (John Newbery)
This commit is contained in:
commit
7146d96de3
@ -133,6 +133,7 @@ def main():
|
|||||||
Help text and arguments for individual test script:''',
|
Help text and arguments for individual test script:''',
|
||||||
formatter_class=argparse.RawTextHelpFormatter)
|
formatter_class=argparse.RawTextHelpFormatter)
|
||||||
parser.add_argument('--coverage', action='store_true', help='generate a basic coverage report for the RPC interface')
|
parser.add_argument('--coverage', action='store_true', help='generate a basic coverage report for the RPC interface')
|
||||||
|
parser.add_argument('--exclude', '-x', help='specify a comma-seperated-list of scripts to exclude. Do not include the .py extension in the name.')
|
||||||
parser.add_argument('--extended', action='store_true', help='run the extended test suite in addition to the basic tests')
|
parser.add_argument('--extended', action='store_true', help='run the extended test suite in addition to the basic tests')
|
||||||
parser.add_argument('--force', '-f', action='store_true', help='run tests even on platforms where they are disabled by default (e.g. windows).')
|
parser.add_argument('--force', '-f', action='store_true', help='run tests even on platforms where they are disabled by default (e.g. windows).')
|
||||||
parser.add_argument('--help', '-h', '-?', action='store_true', help='print help text and exit')
|
parser.add_argument('--help', '-h', '-?', action='store_true', help='print help text and exit')
|
||||||
@ -179,13 +180,6 @@ def main():
|
|||||||
# in the ALL_SCRIPTS list. Accept the name with or without .py extension.
|
# in the ALL_SCRIPTS list. Accept the name with or without .py extension.
|
||||||
test_list = [t for t in ALL_SCRIPTS if
|
test_list = [t for t in ALL_SCRIPTS if
|
||||||
(t in tests or re.sub(".py$", "", t) in tests)]
|
(t in tests or re.sub(".py$", "", t) in tests)]
|
||||||
if not test_list:
|
|
||||||
print("No valid test scripts specified. Check that your test is in one "
|
|
||||||
"of the test lists in rpc-tests.py or run rpc-tests.py with no arguments to run all tests")
|
|
||||||
print("Scripts not found:")
|
|
||||||
print(tests)
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# No individual tests have been specified. Run base tests, and
|
# No individual tests have been specified. Run base tests, and
|
||||||
# optionally ZMQ tests and extended tests.
|
# optionally ZMQ tests and extended tests.
|
||||||
@ -198,6 +192,17 @@ def main():
|
|||||||
# (for parallel running efficiency). This combined list will is no
|
# (for parallel running efficiency). This combined list will is no
|
||||||
# longer sorted.
|
# longer sorted.
|
||||||
|
|
||||||
|
# Remove the test cases that the user has explicitly asked to exclude.
|
||||||
|
if args.exclude:
|
||||||
|
for exclude_test in args.exclude.split(','):
|
||||||
|
if exclude_test + ".py" in test_list:
|
||||||
|
test_list.remove(exclude_test + ".py")
|
||||||
|
|
||||||
|
if not test_list:
|
||||||
|
print("No valid test scripts specified. Check that your test is in one "
|
||||||
|
"of the test lists in rpc-tests.py, or run rpc-tests.py with no arguments to run all tests")
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
if args.help:
|
if args.help:
|
||||||
# Print help for rpc-tests.py, then print help of the first script and exit.
|
# Print help for rpc-tests.py, then print help of the first script and exit.
|
||||||
parser.print_help()
|
parser.print_help()
|
||||||
|
Loading…
Reference in New Issue
Block a user